From 3a08ebda1fba985a29fdfabb0244c073ab81d464 Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Tue, 21 Aug 2018 14:40:43 -0400 Subject: [PATCH] fix notifications endpoint --- .../Implementations/NotificationsApiPushNotificationService.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Core/Services/Implementations/NotificationsApiPushNotificationService.cs b/src/Core/Services/Implementations/NotificationsApiPushNotificationService.cs index 3c801568b..20ed83d72 100644 --- a/src/Core/Services/Implementations/NotificationsApiPushNotificationService.cs +++ b/src/Core/Services/Implementations/NotificationsApiPushNotificationService.cs @@ -141,7 +141,7 @@ namespace Bit.Core.Services { var contextId = GetContextIdentifier(excludeCurrentContext); var request = new PushNotificationData(type, payload, contextId); - await SendAsync(HttpMethod.Post, "notification", request); + await SendAsync(HttpMethod.Post, "notifications", request); } private string GetContextIdentifier(bool excludeCurrentContext)