From a32ac02c6d00a4178266b6f84e234f50ca04fe98 Mon Sep 17 00:00:00 2001 From: choco Date: Tue, 21 Oct 2025 09:59:30 +0200 Subject: [PATCH] download notification stuck fix --- LightlessSync/Services/NotificationService.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/LightlessSync/Services/NotificationService.cs b/LightlessSync/Services/NotificationService.cs index 9e20064..72f4a16 100644 --- a/LightlessSync/Services/NotificationService.cs +++ b/LightlessSync/Services/NotificationService.cs @@ -608,7 +608,7 @@ public class NotificationService : DisposableMediatorSubscriberBase, IHostedServ Mediator.Publish(new LightlessNotificationMessage(notification)); - if (AreAllDownloadsCompleted(userDownloads)) + if (userDownloads.Count == 0 || AreAllDownloadsCompleted(userDownloads)) { Mediator.Publish(new LightlessNotificationDismissMessage("pair_download_progress")); }