[READ-ONLY] Mirror of https://github.com/probablykasper/mr-tagger. Music file tagging app for Mac, Linux and Windows
audio linux macos music tagger tauri windows
0

Configure Feed

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

Fix error when cancelling image file dialog

Kasper (Feb 9, 2023, 5:20 AM +0100) 2e4f628f 017c885c

+6 -1
+1
CHANGELOG.md
··· 2 2 3 3 ## Next 4 4 - Add Opus support 5 + - Fix error when cancelling image file dialog 5 6 6 7 ## 0.1.6 - 2021 Dec 14 7 8 - Fix BPM not showing
+5 -1
src/components/Page.svelte
··· 69 69 multiple: false, 70 70 directory: false, 71 71 }) 72 - if (typeof pathResult === 'string') path = pathResult 72 + if (typeof pathResult === 'string') { 73 + path = pathResult 74 + } else { 75 + return 76 + } 73 77 } 74 78 if (image) { 75 79 await runCmd('set_image', { index: image.index, path })