mirror of https://github.com/zulip/zulip.git
notification: Add a space in narrow to message content.
We have a space for this kind of texts in other places but somehow we missed this case. This PR fixes the same.
This commit is contained in:
parent
1a3a791e0b
commit
2385b3d1d3
|
@ -502,7 +502,7 @@ exports.received_messages = function (messages) {
|
|||
|
||||
function get_message_header(message) {
|
||||
if (message.type === "stream") {
|
||||
return message.stream + ">" + message.subject;
|
||||
return message.stream + " > " + message.subject;
|
||||
}
|
||||
if (message.display_recipient.length > 2) {
|
||||
return "group PM with " + message.display_reply_to;
|
||||
|
|
Loading…
Reference in New Issue