summary refs log tree commit diff
diff options
context:
space:
mode:
authorLoren Burkholder <computersemiexpert@outlook.com>2021-02-15 19:23:14 -0500
committerNicolas Werner <nicolas.werner@hotmail.de>2021-03-17 19:17:13 +0100
commite630504863f30ab7958a69a4c00bbc51a403fef4 (patch)
tree3e8c306bb295a435c443f36dc5d741206079f557
parentMove data parsing into a dedicated function (diff)
downloadnheko-e630504863f30ab7958a69a4c00bbc51a403fef4.tar.xz
Disable HTML on macOS
-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 41aea0d1..04044d86 100644 --- a/src/notifications/ManagerMac.cpp +++ b/src/notifications/ManagerMac.cpp
@@ -7,5 +7,5 @@ QString NotificationsManager::formatNotification(const QString &text) { - return utils::markdownToHtml(text); + return QTextDocumentFragment::fromHtml(utils::markdownToHtml(text)).toPlainText(); }