1
0
mirror of https://github.com/bitwarden/server synced 2025-12-12 22:33:45 +00:00

fix double //

This commit is contained in:
Kyle Spearrin
2018-08-21 14:32:09 -04:00
parent a275af6366
commit 255855887b
4 changed files with 8 additions and 8 deletions

View File

@@ -141,7 +141,7 @@ namespace Bit.Core.Services
{
var contextId = GetContextIdentifier(excludeCurrentContext);
var request = new PushNotificationData<T>(type, payload, contextId);
await SendAsync(HttpMethod.Post, "/notification", request);
await SendAsync(HttpMethod.Post, "notification", request);
}
private string GetContextIdentifier(bool excludeCurrentContext)