From b05657d51af7fa18b96eb664b353d620f5b6f104 Mon Sep 17 00:00:00 2001
From: Loren Burkholder <computersemiexpert@outlook.com>
Date: Fri, 19 Feb 2021 19:31:48 -0500
Subject: [PATCH] Fix colon spacing

---
 src/notifications/Manager.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/notifications/Manager.cpp b/src/notifications/Manager.cpp
index 03ce345f9..083107fb9 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);
 }
-- 
GitLab