From 6d03cc5f8d3bc7a80a00bdeebca51d21a365381b Mon Sep 17 00:00:00 2001 From: Glax Date: Sun, 22 Sep 2024 00:15:50 +0200 Subject: [PATCH] Fix incorrect setting check for notificationsbuffer --- Tranga/NotificationConnectors/NotificationConnector.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Tranga/NotificationConnectors/NotificationConnector.cs b/Tranga/NotificationConnectors/NotificationConnector.cs index 76576ca..2414fb4 100644 --- a/Tranga/NotificationConnectors/NotificationConnector.cs +++ b/Tranga/NotificationConnectors/NotificationConnector.cs @@ -45,7 +45,7 @@ public abstract class NotificationConnector : GlobalBase public void SendNotification(string title, string notificationText, bool buffer = false) { _notificationRequested ??= DateTime.Now; - if (!TrangaSettings.bufferLibraryUpdates || !buffer) + if (!TrangaSettings.bufferNotifications || !buffer) { SendNotificationInternal(title, notificationText); return;