Try to fix CI, no match for QString::arg(QStringRef)

This commit is contained in:
Nicolas Werner 2019-09-11 00:59:04 +02:00
parent 62d0cd74da
commit 691c854201
1 changed files with 1 additions and 1 deletions

View File

@ -82,7 +82,7 @@ TimelineViewManager::queueReplyMessage(const QString &reply, const RelatedInfo &
QString body; QString body;
bool firstLine = true; bool firstLine = true;
for (const auto &line : related.quoted_body.splitRef("\n")) { for (const auto &line : related.quoted_body.split("\n")) {
if (firstLine) { if (firstLine) {
firstLine = false; firstLine = false;
body = QString("> <%1> %2\n").arg(related.quoted_user).arg(line); body = QString("> <%1> %2\n").arg(related.quoted_user).arg(line);