diff --git a/lib/selectors/user-selectors.js b/lib/selectors/user-selectors.js --- a/lib/selectors/user-selectors.js +++ b/lib/selectors/user-selectors.js @@ -183,7 +183,8 @@ for (const threadID in threadInfos) { const thread = threadInfos[threadID]; if ( - thread.type !== threadTypes.GENESIS_PERSONAL || + (thread.type !== threadTypes.GENESIS_PERSONAL && + thread.type !== threadTypes.PERSONAL) || !thread.members.find(member => member.id === viewerID) ) { continue;