Skip to content

Commit

Permalink
Remove slash on relative url, shince this won't add to, but replace t…
Browse files Browse the repository at this point in the history
…he existing.
  • Loading branch information
Ronny Birkeli committed Nov 6, 2022
1 parent 56f01db commit ef345da
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ public async Task<Subscription> AddSubscription(string org, string app, string e
var subscriptionRequest = new SubscriptionRequest()
{
TypeFilter = eventType,
EndPoint = new Uri(new Uri(appBaseUrl), $"/api/v1/eventsreceiver?code={await _secretCodeProvider.GetSecretCode()}"),
EndPoint = new Uri(new Uri(appBaseUrl), $"api/v1/eventsreceiver?code={await _secretCodeProvider.GetSecretCode()}"),
SourceFilter = new Uri(appBaseUrl)
};

Expand Down

0 comments on commit ef345da

Please sign in to comment.