[READ-ONLY] Mirror of https://github.com/probablykasper/ferrum. Music library app for Mac, Linux and Windows ferrum.kasper.space
electron linux macos music music-library music-player napi windows
0

Configure Feed

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

Fix error after updating metadata when filter is on

When you have a filter on, an error would happen if you update the metadata of a track so that the filter no longer matches. For example, filtering for `Warrior` and updating a track called `Warrior` to `Warrio`.

Kasper (Aug 9, 2021, 1:27 AM +0200) 0f0f2156 d8c45cca

+4 -2
+1
.github/funding.yml
··· 1 + github: [probablykasper]
+3
CHANGELOG.md
··· 1 1 # Changelog 2 2 3 + ## Next 4 + - Fix error after updating metadata when filter is on 5 + 3 6 ## 0.8.0 - 2021 Aug 8 4 7 - Add support for Linux (deb/rpm) and Windows (exe) 5 8 - Add volume controls
-1
src/components/PlaylistInfo.svelte
··· 16 16 }, 17 17 } 18 18 })() 19 - // export const visible = writable(true) 20 19 visible.subscribe((newValue) => { 21 20 if (newValue === false) { 22 21 focusLast()
-1
src/stores/data.ts
··· 199 199 return { 200 200 subscribe: store.subscribe, 201 201 refresh() { 202 - call((data) => data.refresh_page()) 203 202 store.update((n) => n + 1) 204 203 }, 205 204 }