🐛 Fix services well known didn't add protocol prefix
This commit is contained in:
@@ -41,7 +41,7 @@ public class WellKnownController(
|
|||||||
{
|
{
|
||||||
if (!domainMappings.TryGetValue(key, out var domain)) continue;
|
if (!domainMappings.TryGetValue(key, out var domain)) continue;
|
||||||
if (domain is not null)
|
if (domain is not null)
|
||||||
serviceMap[key] = domain;
|
serviceMap[key] = "https://" + domain;
|
||||||
}
|
}
|
||||||
|
|
||||||
return Ok(serviceMap);
|
return Ok(serviceMap);
|
||||||
|
Reference in New Issue
Block a user