Implement fuzzy page search using fuse.js (#86)

This commit is contained in:
Mungai Njoroge
2022-09-10 10:46:45 -04:00
committed by GitHub
parent befdf383b6
commit 5770a66d67
67 changed files with 568 additions and 558 deletions
+2 -2
View File
@@ -24,7 +24,7 @@ export default function play(
store = store as typeof folder;
const f = store();
useQueue.playFromFolder(f.path, f.tracks);
useQueue.playFromFolder(f.path, f.allTracks);
useQueue.play();
break;
case playSources.album:
@@ -35,7 +35,7 @@ export default function play(
a_store.info.title,
a_store.info.artist,
a_store.info.hash,
a_store.tracks
a_store.allTracks
);
useQueue.play();
break;