2
0
mirror of https://github.com/telegramdesktop/tdesktop synced 2025-08-31 14:38:15 +00:00

Closed beta 1001007003: Fix Xcode build.

This commit is contained in:
John Preston
2017-06-28 10:24:06 +03:00
parent 885b82b437
commit c3db57a4fc
4 changed files with 7 additions and 21 deletions

View File

@@ -107,7 +107,7 @@ void SpecialConfigRequest::dnsFinished() {
} else if (!answerIt->isArray()) {
LOG(("Config Error: Not an array received in Answer in dns response JSON."));
} else {
for (auto &elem : answerIt->toArray()) {
for (auto elem : answerIt->toArray()) {
if (!elem.isObject()) {
LOG(("Config Error: Not an object found in Answer array in dns response JSON."));
} else {