diff options
| author | Fuwn <[email protected]> | 2024-02-17 21:04:59 -0800 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-02-17 21:04:59 -0800 |
| commit | f1a09f3348cf4dbc7a0fb6116f9f41fcde372f4c (patch) | |
| tree | be69710d2dbf59badb9be88a1e6dce3c710d6525 /src/lib/Hololive | |
| parent | feat(events): avatar for all events (diff) | |
| download | due.moe-f1a09f3348cf4dbc7a0fb6116f9f41fcde372f4c.tar.xz due.moe-f1a09f3348cf4dbc7a0fb6116f9f41fcde372f4c.zip | |
feat(hololive): move pinned to preferences
Diffstat (limited to 'src/lib/Hololive')
| -rw-r--r-- | src/lib/Hololive/Lives.svelte | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/Hololive/Lives.svelte b/src/lib/Hololive/Lives.svelte index ede4b22c..ca263c56 100644 --- a/src/lib/Hololive/Lives.svelte +++ b/src/lib/Hololive/Lives.svelte @@ -9,7 +9,7 @@ export let getPinnedStreams: () => void; const pinStream = (streamer: string) => - fetch(root(`/api/configuration/pin?stream=${encodeURIComponent(streamer)}`), { + fetch(root(`/api/preferences/pin?stream=${encodeURIComponent(streamer)}`), { method: 'PUT', headers: { 'Content-Type': 'application/json' |