summary refs log tree commit diff
diff options
context:
space:
mode:
authorLoren Burkholder <computersemiexpert@outlook.com>2021-02-19 19:31:48 -0500
committerNicolas Werner <nicolas.werner@hotmail.de>2021-03-17 19:17:14 +0100
commitb05657d51af7fa18b96eb664b353d620f5b6f104 (patch)
tree810cd2fc0b7f2a1d3748446082f999eed92a273c
parentDon't run markdownToHtml on messages (diff)
downloadnheko-b05657d51af7fa18b96eb664b353d620f5b6f104.tar.xz
Fix colon spacing
-rw-r--r--src/notifications/Manager.cpp2
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 &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);
 }