Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions main.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ const { autoUpdater } = require('electron-updater');
const { onFirstRunMaybe } = require('./first-run');
const path = require('path');

app.setAppUserModelId('com.electron.gitify');

const iconIdle = path.join(
__dirname,
'assets',
Expand Down
2 changes: 1 addition & 1 deletion src/utils/notifications.ts
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ export const raiseNativeNotification = (

if (notifications.length === 1) {
const notification = notifications[0];
title = `Gitify - ${notification.repository.full_name}`;
Comment thread
Araxeus marked this conversation as resolved.
title = notification.repository.full_name;
body = notification.subject.title;
notificationUrl = notification.subject.url;
} else {
Expand Down