Skip to content

Commit

Permalink
fix: Fix broken source URL in cloud events (#753)
Browse files Browse the repository at this point in the history
Missing a `/` in the source URL

## Related Issue(s)
 - #747
  • Loading branch information
oskogstad authored May 23, 2024
1 parent f38f834 commit 4a45eda
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,5 @@ protected DomainEventToAltinnForwarderBase(ICloudEventBus cloudEventBus, IOption
}

internal string SourceBaseUrl() =>
$"{_dialogportenSettings.BaseUri}api/v1/enduser/dialogs/";
$"{_dialogportenSettings.BaseUri}/api/v1/enduser/dialogs/";
}

0 comments on commit 4a45eda

Please sign in to comment.