mirror of
https://github.com/hyzendust/hyzendust.github.io.git
synced 2026-07-01 07:22:17 +02:00
Fix: show lowercase xmpp id
This commit is contained in:
@@ -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 = '';
|
||||
|
||||
Reference in New Issue
Block a user