2
0
mirror of https://github.com/telegramdesktop/tdesktop synced 2025-09-05 00:46:08 +00:00

Replace remaining multi-args

This commit is contained in:
Ilya Fedin
2021-03-13 23:05:58 +04:00
committed by John Preston
parent 508762cd2c
commit 12e306dd7b
3 changed files with 10 additions and 10 deletions

View File

@@ -557,10 +557,10 @@ void Updates::feedDifference(
}
void Updates::differenceFail(const MTP::Error &error) {
LOG(("RPC Error in getDifference: %1 %2: %3"
).arg(error.code()
).arg(error.type()
).arg(error.description()));
LOG(("RPC Error in getDifference: %1 %2: %3").arg(
QString::number(error.code()),
error.type(),
error.description()));
failDifferenceStartTimerFor(nullptr);
}