1
0
mirror of https://github.com/bitwarden/server.git synced 2025-04-05 21:18:13 -05:00

use internal URL

This commit is contained in:
Kyle Spearrin 2020-09-01 12:28:03 -04:00
parent c6aaa1276d
commit 4439e6b25e

View File

@ -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));
}
}