mirror of
https://github.com/Nheko-Reborn/nheko.git
synced 2024-11-22 03:00:46 +03:00
Fix too many newlines in reply fallback
This commit is contained in:
parent
2c307a4dee
commit
590395a08b
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue