mirror of
https://github.com/AyuGram/AyuGramDesktop.git
synced 2026-07-25 15:04:57 +00:00
Avoid multiple .arg usage as suggested by clazy
This commit is contained in:
@@ -399,10 +399,10 @@ void Updates::feedChannelDifference(
|
||||
void Updates::channelDifferenceFail(
|
||||
not_null<ChannelData*> channel,
|
||||
const MTP::Error &error) {
|
||||
LOG(("RPC Error in getChannelDifference: %1 %2: %3"
|
||||
).arg(error.code()
|
||||
).arg(error.type()
|
||||
).arg(error.description()));
|
||||
LOG(("RPC Error in getChannelDifference: %1 %2: %3").arg(
|
||||
QString::number(error.code()),
|
||||
error.type(),
|
||||
error.description()));
|
||||
failDifferenceStartTimerFor(channel);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user