This commit is contained in:
An Phan 2016-12-01 20:06:52 +07:00
parent f96518d8dc
commit 2a3bdb1ef4
No known key found for this signature in database
GPG key ID: 05536BB4BCDC02A2

View file

@ -160,7 +160,7 @@ export const songStore = {
guess (title, album) {
title = slugify(title.toLowerCase())
let found = false
album.songs.forEach (song => {
album.songs.forEach(song => {
if (slugify(song.title.toLowerCase()) === title) {
found = song
}