summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorNicolas Werner <nicolas.werner@hotmail.de>2023-10-30 17:01:04 +0100
committerNicolas Werner <nicolas.werner@hotmail.de>2023-10-31 13:04:39 +0100
commita524524a807fe439bf374ee3657fe02268e73d9e (patch)
treeb5919f01abce23b5a15b5f11099d2cc7e670ead2 /src
parentSpeed up compilation a bit (diff)
downloadnheko-a524524a807fe439bf374ee3657fe02268e73d9e.tar.xz
Try to fix notification in packaged app
Diffstat (limited to 'src')
-rw-r--r--src/notifications/ManagerWin.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/notifications/ManagerWin.cpp b/src/notifications/ManagerWin.cpp
index 52ae9fe7..ce0143b0 100644
--- a/src/notifications/ManagerWin.cpp
+++ b/src/notifications/ManagerWin.cpp
@@ -35,7 +35,8 @@ init()
     isInitialized = true;
 
     WinToast::instance()->setAppName(L"Nheko");
-    WinToast::instance()->setAppUserModelId(WinToast::configureAUMI(L"nheko", L"nheko"));
+    WinToast::instance()->setAppUserModelId(
+      WinToast::configureAUMI(L"NhekoReborn", L"in.nheko.Nheko"));
     if (!WinToast::instance()->initialize())
         std::wcout << "Your system is not compatible with toast notifications\n";
 }