This commit is contained in:
vapormusic 2021-12-09 16:03:45 +07:00
commit 29ae057bc5

View file

@ -319,10 +319,11 @@ const app = new Vue({
},
async getSearchHints() {
if(this.search.term == "") {
this.search.hints = ""
this.search.hints = []
return
}
let hints = await app.mkapi("searchHints", false, this.search.term)
this.search.hints = hints.terms
this.search.hints = hints ? hints.terms : []
},
getSongProgress() {
if(this.playerLCD.userInteraction) {