[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.

Prevent double quitting preparation

Kasper (Sep 17, 2025, 1:03 AM +0200) 2a9c1d2f 3dbbf8fc

+6
+6
src/electron/main.ts
··· 197 197 }) 198 198 199 199 // doesn't always fire on Windows :( 200 + let gonna_quit = false 200 201 app.on('before-quit', (e) => { 201 202 if (quitting) { 202 203 return 203 204 } else if (app_loaded) { 205 + if (gonna_quit) { 206 + console.log('Already preparing to quit') 207 + return 208 + } 204 209 console.log('Preparing to quit') 205 210 e.preventDefault() 206 211 main_window?.webContents.send('gonnaQuit') 212 + gonna_quit = true 207 213 ipcMain.once('readyToQuit', () => { 208 214 console.log('Quitting gracefully') 209 215 quitting = true