A music player that connects to your cloud/distributed storage.
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix: unset queue.now if it got deleted

+5
+5
src/components/engine/queue/worker.js
··· 113 113 effect(() => { 114 114 const existing = new Set($lake.value.map((t) => t.id)); 115 115 116 + if ($now.value && !existing.has($now.value.id)) { 117 + // TODO: Shift queue instead? 118 + $now.value = null; 119 + } 120 + 116 121 $future.value = $future.value.filter((i) => { 117 122 return existing.has(i.id); 118 123 });