1
0
mirror of https://github.com/matrix-org/matrix-react-sdk.git synced 2025-07-16 22:01:54 +03:00

Fix typo as found by Luke

This commit is contained in:
Michael Telatynski
2017-09-25 15:49:48 +01:00
committed by GitHub
parent c8922ba7f5
commit 796924ef35

View File

@ -67,7 +67,7 @@ function textForMemberEvent(ev) {
senderName,
oldDisplayName: prevContent.displayname,
});
} else if (prevContent.avatar_url && !prevContent.avatar_url) {
} else if (prevContent.avatar_url && !content.avatar_url) {
return _t('%(senderName)s removed their profile picture.', {senderName});
} else if (prevContent.avatar_url && content.avatar_url &&
prevContent.avatar_url !== content.avatar_url) {