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');
44const { onFirstRunMaybe } = require ( './first-run' ) ;
55const path = require ( 'path' ) ;
66
7+ app . setAppUserModelId ( 'com.electron.gitify' ) ;
8+
79const iconIdle = path . join (
810 __dirname ,
911 'assets' ,
Original file line number Diff line number Diff line change @@ -69,7 +69,9 @@ export const raiseNativeNotification = (
6969
7070 if ( notifications . length === 1 ) {
7171 const notification = notifications [ 0 ] ;
72- title = `Gitify - ${ notification . repository . full_name } ` ;
72+ title = `${ process . platform !== 'win32' ? 'Gitify - ' : '' } ${
73+ notification . repository . full_name
74+ } `;
7375 body = notification . subject . title ;
7476 notificationUrl = notification . subject . url ;
7577 } else {
You can’t perform that action at this time.
0 commit comments