Skip to content

Commit 5082d42

Browse files
committed
fix - Fixed notification manager causing hang
--- We've fixed the notification manager causing hang in the kernel when trying to shut it down and it fails. --- Type: fix Breaking: False Doc Required: False Backport Required: False Part: 1/1
1 parent 6138ae2 commit 5082d42

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

public/Nitrocid/Misc/Notifications/NotificationManager.cs

+3-1
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,9 @@ private static void NotifListen()
8383
List<Notification> NewNotificationsList;
8484
while (!PowerManager.KernelShutdown)
8585
{
86-
SpinWait.SpinUntil(() => sent || dismissing);
86+
SpinWait.SpinUntil(() => sent || dismissing || PowerManager.KernelShutdown);
87+
if (PowerManager.KernelShutdown)
88+
continue;
8789
if (dismissing)
8890
{
8991
dismissing = false;

0 commit comments

Comments
 (0)