diff --git a/src/renderer/utils/system/native.ts b/src/renderer/utils/system/native.ts index 626622674..ba337f0d0 100644 --- a/src/renderer/utils/system/native.ts +++ b/src/renderer/utils/system/native.ts @@ -20,8 +20,10 @@ export async function raiseNativeNotification(notifications: GitifyNotification[ if (notifications.length === 1) { const notification = notifications[0]; - title = window.gitify.platform.isWindows() ? '' : notification.repository.fullName; - body = notification.subject.title; + title = notification.repository.fullName; + body = notification.subject.type + ? `${notification.subject.title} [${notification.subject.type}]` + : notification.subject.title; url = await generateNotificationWebUrl(notification); } else { title = APPLICATION.NAME;