Added port stripping #78

Merged
khwezi merged 1 commits from payments into master 2026-06-05 07:37:17 +02:00
+2 -1
View File
@@ -50,7 +50,8 @@ public static class Api
{ {
var uriBuilder = new UriBuilder(context.ProtocolMessage.RedirectUri) var uriBuilder = new UriBuilder(context.ProtocolMessage.RedirectUri)
{ {
Scheme = "https" Scheme = "https",
Port = -1,
}; };
context.ProtocolMessage.RedirectUri = uriBuilder.Uri.ToString(); context.ProtocolMessage.RedirectUri = uriBuilder.Uri.ToString();