Update ts/components/session/settings/SessionSettings.tsx

Co-authored-by: Audric Ackermann <audric.bilb@gmail.com>
pull/1297/head
Konstantin Ullrich 5 years ago committed by GitHub
parent 7e0d4dfa28
commit 46f447ef7c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -597,13 +597,12 @@ export class SettingsView extends React.Component<SettingsViewProps, State> {
const model = window.getConversations();
for (const currentModel of model.models) {
let displayName = `User (...${currentModel.id.toString().substr(-6)})`;
if (currentModel.attributes.profile && currentModel.attributes.profile.displayName) {
displayName = currentModel.attributes.profile.displayName
}
if(currentModel.isBlocked()) {
let displayName = `User (...${currentModel.id.toString().substr(-6)})`;
if (currentModel.attributes.profile && currentModel.attributes.profile.displayName) {
displayName = currentModel.attributes.profile.displayName
}
results.push({
id: currentModel.id,
title: displayName,

Loading…
Cancel
Save