We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e246756 commit 025a73cCopy full SHA for 025a73c
src/libsync/pushnotifications.cpp
@@ -225,9 +225,9 @@ void PushNotifications::handleNotifyFileId(const QString &message)
225
}
226
227
if (const auto jsonArray = jsonDoc.array(); jsonDoc.isArray()) {
228
- for (const auto& fileid : jsonArray) {
229
- if (const auto fid = fileid.toInteger(); fileid.isDouble()) {
230
- fileIds.push_back(fid);
+ for (const auto& jsonFileid : jsonArray) {
+ if (const auto fileid = jsonFileid.toInteger(); jsonFileid.isDouble()) {
+ fileIds.push_back(fileid);
231
232
233
0 commit comments