summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorNicolas Werner <nicolas.werner@hotmail.de>2021-11-13 03:20:46 +0100
committerNicolas Werner <nicolas.werner@hotmail.de>2021-11-13 03:21:42 +0100
commit38e349897812cdce409fd8c0faea205a3fb862c0 (patch)
tree49db6b88c7546434538b71822d7b51e9b564183d /src
parentFix some colors switched to yellow by accident (diff)
downloadnheko-38e349897812cdce409fd8c0faea205a3fb862c0.tar.xz
Prevent edits from removing quotes at the beginning of a message
Diffstat (limited to 'src')
-rw-r--r--src/Utils.cpp13
1 files changed, 8 insertions, 5 deletions
diff --git a/src/Utils.cpp b/src/Utils.cpp

index b0fb01b1..b838a971 100644 --- a/src/Utils.cpp +++ b/src/Utils.cpp
@@ -59,11 +59,14 @@ std::string utils::stripReplyFromBody(const std::string &bodyi) { QString body = QString::fromStdString(bodyi); - QRegularExpression plainQuote("^>.*?$\n?", QRegularExpression::MultilineOption); - while (body.startsWith(">")) - body.remove(plainQuote); - if (body.startsWith("\n")) - body.remove(0, 1); + if (body.startsWith("> <")) { + auto segments = body.split('\n'); + while (!segments.isEmpty() && segments.begin()->startsWith('>')) + segments.erase(segments.begin()); + if (!segments.empty() && segments.first().isEmpty()) + segments.erase(segments.begin()); + body = segments.join('\n'); + } body.replace("@room", QString::fromUtf8("@\u2060room")); return body.toStdString();