summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorNicolas Werner <nicolas.werner@hotmail.de>2021-06-30 12:22:22 +0200
committerNicolas Werner <nicolas.werner@hotmail.de>2021-06-30 12:22:22 +0200
commit590395a08b60c74c0743fd7dcce8b93ad557428d (patch)
treef111d256eb35aff603f0b7e054306c3b036fb672 /src
parentFix error message for /sync (diff)
downloadnheko-590395a08b60c74c0743fd7dcce8b93ad557428d.tar.xz
Fix too many newlines in reply fallback
Diffstat (limited to 'src')
-rw-r--r--src/timeline/InputBar.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/timeline/InputBar.cpp b/src/timeline/InputBar.cpp
index c309daab..b0747a7c 100644
--- a/src/timeline/InputBar.cpp
+++ b/src/timeline/InputBar.cpp
@@ -296,7 +296,7 @@ InputBar::message(QString msg, MarkdownOverride useMarkdown, bool rainbowify)
                                 firstLine = false;
                                 body = QString("> <%1> %2\n").arg(related.quoted_user).arg(line);
                         } else {
-                                body = QString("%1\n> %2\n").arg(body).arg(line);
+                                body += QString("> %1\n").arg(line);
                         }
                 }