Skip to content

Commit

Permalink
#224 - Remove duplicated '/' in SignalR URL.
Browse files Browse the repository at this point in the history
  • Loading branch information
maraf committed Apr 26, 2019
1 parent 1eed87b commit 2943888
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Money.UI.Blazor/Services/ApiClient.cs
Expand Up @@ -69,7 +69,7 @@ private void EnsureAuthorization()
if (token.HasValue && http.DefaultRequestHeaders.Authorization?.Parameter != token.Value)
{
http.DefaultRequestHeaders.Authorization = new AuthenticationHeaderValue("Bearer", token.Value);
interop.StartSignalR(configuration.ApiUrl.ToString() + "/api", token.Value);
interop.StartSignalR(configuration.ApiUrl.ToString() + "api", token.Value);

eventDispatcher.PublishAsync(new UserSignedIn());
}
Expand Down

0 comments on commit 2943888

Please sign in to comment.