about summary refs log tree commit diff
diff options
context:
space:
mode:
authorThibaut Girka <thib@sitedethib.com>2018-10-30 17:54:50 +0100
committerThibaut Girka <thib@sitedethib.com>2018-10-30 17:54:50 +0100
commit0d6b8f36aaee9c8c68c64ce4a63bcc66c6faf78d (patch)
tree9411daf86f412a69c2536cfc302b484bd3ea16ae
parent1c448d647488dc3dd3b72e9fe15efb971612157c (diff)
[Glitch] Fix empty display name precedence over username in web UI
Port f59b840549d1b4dfd02ae4f52b64149ff8de0165 to glitch-soc
-rw-r--r--app/javascript/flavours/glitch/reducers/accounts.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/javascript/flavours/glitch/reducers/accounts.js b/app/javascript/flavours/glitch/reducers/accounts.js
index c2f016a87..860c13534 100644
--- a/app/javascript/flavours/glitch/reducers/accounts.js
+++ b/app/javascript/flavours/glitch/reducers/accounts.js
@@ -72,7 +72,7 @@ const normalizeAccount = (state, account) => {
   delete account.statuses_count;
 
   const emojiMap = makeEmojiMap(account);
-  const displayName = account.display_name.length === 0 ? account.username : account.display_name;
+  const displayName = account.display_name.trim().length === 0 ? account.username : account.display_name;
   account.display_name_html = emojify(escapeTextContentForBrowser(displayName), emojiMap);
   account.note_emojified = emojify(account.note, emojiMap);