diff options
author | Nicolas Werner <nicolas.werner@hotmail.de> | 2021-06-30 12:22:22 +0200 |
---|---|---|
committer | Nicolas Werner <nicolas.werner@hotmail.de> | 2021-06-30 12:22:22 +0200 |
commit | 590395a08b60c74c0743fd7dcce8b93ad557428d (patch) | |
tree | f111d256eb35aff603f0b7e054306c3b036fb672 /src | |
parent | Fix error message for /sync (diff) | |
download | nheko-590395a08b60c74c0743fd7dcce8b93ad557428d.tar.xz |
Fix too many newlines in reply fallback
Diffstat (limited to 'src')
-rw-r--r-- | src/timeline/InputBar.cpp | 2 |
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); } } |