mirror of
https://github.com/koel/koel
synced 2024-11-10 06:34:14 +00:00
Fix contains() method
This commit is contained in:
parent
9cd74a75f8
commit
f341987e33
1 changed files with 1 additions and 1 deletions
|
@ -66,7 +66,7 @@ export default {
|
|||
* @return {Boolean}
|
||||
*/
|
||||
contains(song) {
|
||||
return _.includes(this.all(), song);
|
||||
return _.includes(this.all, song);
|
||||
},
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in a new issue