mirror of
https://github.com/zulip/zulip.git
synced 2025-11-01 20:44:04 +00:00
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:
@@ -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;
|
||||
|
Reference in New Issue
Block a user