Do not set title text for users without data. Closes #1249
This commit is contained in:
parent
9b7926963f
commit
f23a1202cc
@ -48,9 +48,9 @@ export default class ChatMessageView extends Component {
|
||||
return null;
|
||||
}
|
||||
const formattedTimestamp = `Sent at ${formatTimestamp(timestamp)}`;
|
||||
const userMetadata = `${displayName} first joined ${formatTimestamp(
|
||||
const userMetadata = createdAt ? `${displayName} first joined ${formatTimestamp(
|
||||
createdAt
|
||||
)}`;
|
||||
)}` : null;
|
||||
|
||||
const isSystemMessage = message.type === SOCKET_MESSAGE_TYPES.SYSTEM;
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user