update spfn api to new domain

This commit is contained in:
CrafterPika 2026-08-08 08:37:46 +02:00
commit 6345e3373f
No known key found for this signature in database
GPG key ID: 68B3920DBA3C6C31

View file

@ -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);