mirror of
https://github.com/bitwarden/server.git
synced 2025-04-06 13:38:13 -05:00
use internal URL
This commit is contained in:
parent
c6aaa1276d
commit
4439e6b25e
@ -658,9 +658,9 @@ namespace Bit.Core.Utilities
|
||||
var uri = new Uri(val);
|
||||
dictReplace.Add(item.Key, string.Concat(publicServiceUri, uri.LocalPath));
|
||||
}
|
||||
else if (item.Key == "jwks_uri" && item.Value is string jwksVal)
|
||||
else if ((item.Key == "jwks_uri" || item.Key.EndsWith("_endpoint")) && item.Value is string val2)
|
||||
{
|
||||
var uri = new Uri(jwksVal);
|
||||
var uri = new Uri(val2);
|
||||
dictReplace.Add(item.Key, string.Concat(internalServiceUri, uri.LocalPath));
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user