From 6345e3373fec71d0574f24fa879e041d29526d96 Mon Sep 17 00:00:00 2001 From: CrafterPika Date: Sat, 8 Aug 2026 08:37:46 +0200 Subject: [PATCH] update spfn api to new domain --- Func.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Func.cs b/Func.cs index 75765ad..6011855 100644 --- a/Func.cs +++ b/Func.cs @@ -50,7 +50,7 @@ namespace Func { return "0"; } } else { - HttpResponseMessage response = await client.GetAsync($"https://account.spfn.net/v1/api/admin/mapped_ids?input_type=pid&output_type=user_id&input={pid}"); + HttpResponseMessage response = await client.GetAsync($"https://account.spbr.net/v1/api/admin/mapped_ids?input_type=pid&output_type=user_id&input={pid}"); if (response.IsSuccessStatusCode) { string content = await response.Content.ReadAsStringAsync(); XDocument doc = XDocument.Parse(content);