diff options
author | Loren Burkholder <computersemiexpert@outlook.com> | 2021-02-19 19:31:48 -0500 |
---|---|---|
committer | Nicolas Werner <nicolas.werner@hotmail.de> | 2021-03-17 19:17:14 +0100 |
commit | b05657d51af7fa18b96eb664b353d620f5b6f104 (patch) | |
tree | 810cd2fc0b7f2a1d3748446082f999eed92a273c | |
parent | Don't run markdownToHtml on messages (diff) | |
download | nheko-b05657d51af7fa18b96eb664b353d620f5b6f104.tar.xz |
Fix colon spacing
-rw-r--r-- | src/notifications/Manager.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/notifications/Manager.cpp b/src/notifications/Manager.cpp index 03ce345f..083107fb 100644 --- a/src/notifications/Manager.cpp +++ b/src/notifications/Manager.cpp @@ -21,7 +21,7 @@ NotificationsManager::postNotification(const mtx::responses::Notification ¬if 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); } |