From 60ab02dce2b39611aaee7b75792c1fdd9fa36e2d Mon Sep 17 00:00:00 2001 From: hyzen Date: Fri, 19 Jun 2026 17:44:08 +0530 Subject: [PATCH] Fix: show lowercase xmpp id --- content/services/xmpp-account.md | 2 +- docs/index.html | 2 +- docs/index.xml | 2 +- docs/services/xmpp-account/index.html | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/content/services/xmpp-account.md b/content/services/xmpp-account.md index 5a590af..43a5ebd 100644 --- a/content/services/xmpp-account.md +++ b/content/services/xmpp-account.md @@ -18,7 +18,7 @@ registration-needed = true (function () { var username = localStorage.getItem('f4_username'); if (username) { - document.getElementById('xmpp-jid').textContent = username + '@freedoms4.org'; + document.getElementById('xmpp-jid').textContent = username.toLowerCase() + '@freedoms4.org'; document.getElementById('xmpp-loggedin').style.display = ''; } else { document.getElementById('xmpp-loggedout').style.display = ''; diff --git a/docs/index.html b/docs/index.html index a1fa96c..6f68feb 100644 --- a/docs/index.html +++ b/docs/index.html @@ -1,4 +1,4 @@ -Freedoms4
Freedoms4 logo

Freedoms4

XMPP

XMPP

\ No newline at end of file