diff --git a/DysonNetwork.Gateway/Controllers/WellKnownController.cs b/DysonNetwork.Gateway/Controllers/WellKnownController.cs index d5129fb..94078f0 100644 --- a/DysonNetwork.Gateway/Controllers/WellKnownController.cs +++ b/DysonNetwork.Gateway/Controllers/WellKnownController.cs @@ -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);