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")); }