Fix incorrect setting check for notificationsbuffer
This commit is contained in:
parent
fcdbd32872
commit
6d03cc5f8d
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user