File tree Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,8 @@ const { autoUpdater } = require('electron-updater');
4
4
const { onFirstRunMaybe } = require ( './first-run' ) ;
5
5
const path = require ( 'path' ) ;
6
6
7
+ app . setAppUserModelId ( 'com.electron.gitify' ) ;
8
+
7
9
const iconIdle = path . join (
8
10
__dirname ,
9
11
'assets' ,
Original file line number Diff line number Diff line change @@ -69,7 +69,9 @@ export const raiseNativeNotification = (
69
69
70
70
if ( notifications . length === 1 ) {
71
71
const notification = notifications [ 0 ] ;
72
- title = `Gitify - ${ notification . repository . full_name } ` ;
72
+ title = `${ process . platform !== 'win32' ? 'Gitify - ' : '' } ${
73
+ notification . repository . full_name
74
+ } `;
73
75
body = notification . subject . title ;
74
76
notificationUrl = notification . subject . url ;
75
77
} else {
You can’t perform that action at this time.
0 commit comments