mirror of
https://github.com/signalapp/Signal-Desktop.git
synced 2025-12-24 12:19:41 +00:00
Put spaces between joined members in group updates
This commit is contained in:
@@ -28,7 +28,7 @@
|
||||
messages.push("Title is now '" + this.model.name + "'.");
|
||||
}
|
||||
if (this.model.joined) {
|
||||
messages.push(this.model.joined + ' joined the group');
|
||||
messages.push(this.model.joined.join(', ') + ' joined the group');
|
||||
}
|
||||
|
||||
this.$el.text(messages.join(' '));
|
||||
|
||||
Reference in New Issue
Block a user