From 39881d2c7f753fb648fd7dd84b16649cc729dc13 Mon Sep 17 00:00:00 2001 From: Bernd Schoolmann Date: Thu, 3 Aug 2023 16:49:13 +0200 Subject: [PATCH] Fix incorrect notification type in PushNotificationListenerService Co-authored-by: aj-rosado <109146700+aj-rosado@users.noreply.github.com> --- src/App/Services/PushNotificationListenerService.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/App/Services/PushNotificationListenerService.cs b/src/App/Services/PushNotificationListenerService.cs index 4b49130e4..d51ad85db 100644 --- a/src/App/Services/PushNotificationListenerService.cs +++ b/src/App/Services/PushNotificationListenerService.cs @@ -138,7 +138,7 @@ namespace Bit.App.Services if (isAuthenticated && sendCreateUpdateMessage.UserId == myUserId) { await _syncService.Value.SyncUpsertSendAsync(sendCreateUpdateMessage, - notification.Type == NotificationType.SyncCipherUpdate); + notification.Type == NotificationType.SyncSendUpdate); } break; case NotificationType.SyncSendDelete: