fix: mii renderer
All checks were successful
CodeQL / lint-debian (push) Successful in 22s

This commit is contained in:
kittentm 2026-07-18 04:11:47 +02:00
commit 8531693c2e
Signed by: kitten
GPG key ID: 394B4EABE4405A83
4 changed files with 4 additions and 4 deletions

View file

@ -124,7 +124,7 @@ window.loadHeader(async function(headerContainer) {
const parsedName = miiBlob ? extractMiiName(miiBlob) : null;
const name = parsedName || (finalData.mii && finalData.mii.name) || finalData.nickname || finalData.user_id || finalData.mii_name || "User";
const miiImgUrl = miiBlob ? `https://mii-renderer.spfn.net/miis/image.png?data=${encodeURIComponent(miiBlob)}&type=face&width=270` : "";
const miiImgUrl = miiBlob ? `https://mii-renderer.bloxerhd.co.uk/miis/image.png?data=${encodeURIComponent(miiBlob)}&type=face&width=270` : "";
const sidebarName = document.getElementById('mii-name');
const sidebarImg = document.getElementById('mii-img');