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 Feb 17, 2023
1 parent 585421a commit 474a2bc
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 @@ -151,6 +151,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 474a2bc

Please sign in to comment.