Add global search, add reset all audiobooks

This commit is contained in:
Mark Cooper 2021-08-21 16:23:35 -05:00
parent 5b64453101
commit 0990c61c93
18 changed files with 323 additions and 33 deletions

View file

@ -207,5 +207,9 @@ class Audiobook {
this.addTrack(file)
})
}
isSearchMatch(search) {
return this.book.isSearchMatch(search.toLowerCase().trim())
}
}
module.exports = Audiobook