mirror of
https://github.com/koel/koel
synced 2024-11-10 14:44:13 +00:00
Fix lint
This commit is contained in:
parent
f96518d8dc
commit
2a3bdb1ef4
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue