Skip to content

Commit

Permalink
Fix args processing on first launch on linux (#793)
Browse files Browse the repository at this point in the history
  • Loading branch information
sarim authored and shiftkey committed Aug 12, 2024
1 parent e26d2e2 commit 9a24464
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions app/src/main-process/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -155,6 +155,10 @@ if (__WIN32__ && process.argv.length > 1) {
}
}

if (__LINUX__ && process.argv.length > 1) {
handlePossibleProtocolLauncherArgs(process.argv)
}

initializeDesktopNotifications()

function handleAppURL(url: string) {
Expand Down

0 comments on commit 9a24464

Please sign in to comment.