Skip to content

Commit 9948fee

Browse files
committed
Fix profile viewer
1 parent 1b433dd commit 9948fee

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

profile.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -411,7 +411,7 @@ function makeSyndicateLogoElement(syndicate)
411411
let initialDataUrl = "supplemental-data/profile-[DE]Rebecca.json";
412412
if (params.has("account"))
413413
{
414-
initialDataUrl = "https://live.wfdata.io/profile?account=" + encodeURIComponent(params.get("account"));
414+
initialDataUrl = "https://conduit.omni.wf/profile?account=" + encodeURIComponent(params.get("account"));
415415
window.hashprefix = "account=" + encodeURIComponent(params.get("account")) + "&";
416416
if (params.has("platform"))
417417
{
@@ -498,7 +498,7 @@ function doLookup()
498498
lookup_in_progress = true;
499499
document.querySelector("#status span").textContent = "Fetching data for " + document.getElementById("username").value;
500500
document.querySelector("#status").classList.remove("d-none");
501-
fetch("https://live.wfdata.io/profile?account=" + encodeURIComponent(document.getElementById("username").value) + "&platform=" + document.getElementById("platform").value).then(res => res.json()).then(data =>
501+
fetch("https://conduit.omni.wf/profile?account=" + encodeURIComponent(document.getElementById("username").value) + "&platform=" + document.getElementById("platform").value).then(res => res.json()).then(data =>
502502
{
503503
if (data)
504504
{

0 commit comments

Comments
 (0)