1
0
mirror of https://github.com/bitwarden/server.git synced 2025-07-01 16:12:49 -05: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

@ -144,7 +144,7 @@ namespace Bit.Core.Services
ExcludeCurrentContext(request);
}
await SendAsync(HttpMethod.Post, "/push/send", request);
await SendAsync(HttpMethod.Post, "push/send", request);
}
private async Task SendPayloadToOrganizationAsync(Guid orgId, PushType type, object payload, bool excludeCurrentContext)
@ -161,7 +161,7 @@ namespace Bit.Core.Services
ExcludeCurrentContext(request);
}
await SendAsync(HttpMethod.Post, "/push/send", request);
await SendAsync(HttpMethod.Post, "push/send", request);
}
private void ExcludeCurrentContext(PushSendRequestModel request)