From 2897f9e9b8b5635629544670bbeff696070355db Mon Sep 17 00:00:00 2001 From: Carl Schwan Date: Sun, 19 Jan 2025 16:49:47 +0100 Subject: [PATCH] Fix build with libquotient dev (version: 0.9.2) --- src/models/actionsmodel.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/models/actionsmodel.cpp b/src/models/actionsmodel.cpp index 877387031..8e819ff42 100644 --- a/src/models/actionsmodel.cpp +++ b/src/models/actionsmodel.cpp @@ -136,7 +136,7 @@ QList actions{ Action{ u"plain"_s, [](const QString &text, NeoChatRoom *room, ChatBarCache *) { -#if Quotient_VERSION_MINOR > 9 +#if Quotient_VERSION_MINOR >= 9 room->postText(text.toHtmlEscaped()); #else room->postPlainText(text.toHtmlEscaped());