diff --git a/lib/shared/thread-utils.js b/lib/shared/thread-utils.js --- a/lib/shared/thread-utils.js +++ b/lib/shared/thread-utils.js @@ -1220,6 +1220,10 @@ threadType === threadTypes.GENESIS ) { return 'Community'; + } else if (threadType === threadTypes.THICK_SIDEBAR) { + return 'Thread'; + } else if (threadTypeIsThick(threadType)) { + return 'Local DM'; } else { return 'Secret'; }