mirror of
https://codeberg.org/Hyperpipe/Hyperpipe
synced 2025-06-28 05:08:00 +02:00
parent
5449523f2a
commit
7905394b26
7 changed files with 143 additions and 134 deletions
|
@ -29,7 +29,7 @@ const Genres = defineAsyncComponent(() => import('@/components/Genres.vue')),
|
|||
Prefs = defineAsyncComponent(() => import('@/components/Prefs.vue'));
|
||||
|
||||
/* Composables */
|
||||
import { useStore } from '@/scripts/util.js';
|
||||
import { useStore, useUnwrap } from '@/scripts/util.js';
|
||||
import { useSetupDB, useUpdatePlaylist } from '@/scripts/db.js';
|
||||
|
||||
/* Stores */
|
||||
|
@ -62,8 +62,7 @@ function parseUrl() {
|
|||
results.getExplore();
|
||||
break;
|
||||
case 'search':
|
||||
nav.state.search = loc[2];
|
||||
console.log(nav.state.search);
|
||||
nav.state.search = useUnwrap(loc[2]);
|
||||
break;
|
||||
case 'watch':
|
||||
player.state.status = 'circle';
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue