summary refs log tree commit diff
path: root/src/notifications/ManagerMac.cpp
diff options
context:
space:
mode:
authorLoren Burkholder <computersemiexpert@outlook.com>2021-02-15 19:30:04 -0500
committerNicolas Werner <nicolas.werner@hotmail.de>2021-03-17 19:17:14 +0100
commit01bbec88dd8c409ec339e7adf4fe2657c05299b6 (patch)
treea85eaa67a4a92b818161dc47f1fb1aca255388fd /src/notifications/ManagerMac.cpp
parentDisable HTML on macOS (diff)
downloadnheko-01bbec88dd8c409ec339e7adf4fe2657c05299b6.tar.xz
Don't run markdownToHtml on messages
Diffstat (limited to 'src/notifications/ManagerMac.cpp')
-rw-r--r--src/notifications/ManagerMac.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/notifications/ManagerMac.cpp b/src/notifications/ManagerMac.cpp

index 04044d86..c75d2283 100644 --- a/src/notifications/ManagerMac.cpp +++ b/src/notifications/ManagerMac.cpp
@@ -7,5 +7,5 @@ QString NotificationsManager::formatNotification(const QString &text) { - return QTextDocumentFragment::fromHtml(utils::markdownToHtml(text)).toPlainText(); + return QTextDocumentFragment::fromHtml(text).toPlainText(); }