From 8f52080eeda67d0625f72d8055165f29b078a062 Mon Sep 17 00:00:00 2001 From: Ryan Tharp Date: Thu, 21 Nov 2019 20:36:57 -0800 Subject: [PATCH] immediately set profile name on public chat servers when you update it --- js/background.js | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/js/background.js b/js/background.js index 89de8955d..703d02efc 100644 --- a/js/background.js +++ b/js/background.js @@ -904,6 +904,12 @@ displayName: newName, avatar: newAvatarPath, }); + // inform all your registered public servers + // could put load on all the servers + // if they just keep changing their names without sending messages + // so we could disable this here + // or least it enable for the quickest response + window.lokiPublicChatAPI.setProfileName(newName); }, }); }