async function updateDiscordStatsFix() { try { const response = await fetch(`https://discord.com/api/v9/invites/gAt7THmUHZ?with_counts=true`); const data = await response.json(); document.getElementById('online-count-fix').textContent = data.approximate_presence_count.toLocaleString(); document.getElementById('member-count-fix').textContent = data.approximate_member_count.toLocaleString(); } catch (e) { document.getElementById('online-count-fix').textContent = "200+"; document.getElementById('member-count-fix').textContent = "1,400+"; } } updateDiscordStatsFix(); can’t wait to see you on the other side