From da66ce63af23e1448f027dc8873a5d7f82ed8ce2 Mon Sep 17 00:00:00 2001 From: LittleSheep Date: Mon, 21 Jul 2025 19:38:11 +0800 Subject: [PATCH] :bug: Fix services well known didn't add protocol prefix --- DysonNetwork.Gateway/Controllers/WellKnownController.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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);