From 8821f09a9d96f34ae7be2ccd488a9310387dcd37 Mon Sep 17 00:00:00 2001 From: Gabe Kangas Date: Sun, 14 Jun 2020 18:28:21 -0700 Subject: [PATCH] Fix changing username --- webroot/js/message.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webroot/js/message.js b/webroot/js/message.js index 026057c3f..927f8c043 100644 --- a/webroot/js/message.js +++ b/webroot/js/message.js @@ -122,7 +122,7 @@ class Messaging { // do other string cleanup? if (newValue) { - this.userName = newValue; + this.username = newValue; this.updateUsernameFields(newValue); setLocalStorage(this.keyUsername, newValue); }