1
0
mirror of https://github.com/bitwarden/mobile synced 2025-12-05 23:53:33 +00:00

Fix incorrect notification type in PushNotificationListenerService

Co-authored-by: aj-rosado <109146700+aj-rosado@users.noreply.github.com>
This commit is contained in:
Bernd Schoolmann
2023-08-03 16:49:13 +02:00
committed by GitHub
parent fc79042212
commit 39881d2c7f

View File

@@ -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: