[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 on_success handler

Kasper (Oct 3, 2025, 1:34 AM +0200) 82862e7b 563c9a59

+1 -1
+1 -1
src/lib/error.ts
··· 90 90 } 91 91 })() as Result<T> 92 92 result.on_success = (cb) => { 93 - if (result.data) { 93 + if (result.error === null) { 94 94 cb(result.data) 95 95 } 96 96 return result