Fix colon spacing

This commit is contained in:
Loren Burkholder 2021-02-19 19:31:48 -05:00 committed by Nicolas Werner
parent 01bbec88dd
commit b05657d51a
No known key found for this signature in database
GPG Key ID: C8D75E610773F2D9
1 changed files with 1 additions and 1 deletions

View File

@ -21,7 +21,7 @@ NotificationsManager::postNotification(const mtx::responses::Notification &notif
text =
"* " + sender + " " + formatNotification(utils::event_body(notification.event));
else
text = sender + ":" + formatNotification(utils::event_body(notification.event));
text = sender + ": " + formatNotification(utils::event_body(notification.event));
systemPostNotification(room_id, event_id, room_name, sender, text, icon);
}