🐛 Fix services well known didn't add protocol prefix

This commit is contained in:
2025-07-21 19:38:11 +08:00
parent 11fd0c011b
commit da66ce63af

View File

@@ -41,7 +41,7 @@ public class WellKnownController(
{
if (!domainMappings.TryGetValue(key, out var domain)) continue;
if (domain is not null)
serviceMap[key] = domain;
serviceMap[key] = "https://" + domain;
}
return Ok(serviceMap);