Fix contains() method

This commit is contained in:
An Phan 2016-03-19 03:41:46 +08:00
parent 9cd74a75f8
commit f341987e33

View file

@ -66,7 +66,7 @@ export default {
* @return {Boolean}
*/
contains(song) {
return _.includes(this.all(), song);
return _.includes(this.all, song);
},
/**