Fix too many newlines in reply fallback

This commit is contained in:
Nicolas Werner 2021-06-30 12:22:22 +02:00
parent 2c307a4dee
commit 590395a08b
No known key found for this signature in database
GPG Key ID: C8D75E610773F2D9
1 changed files with 1 additions and 1 deletions

View File

@ -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);
}
}