fix condition in applyDifferences loop

This commit is contained in:
skilion 2016-12-25 20:17:02 +01:00
parent 6913c87d5c
commit bbbfeb68f3

View file

@ -109,7 +109,7 @@ final class SyncEngine
}
statusToken = changes["@delta.token"].str;
std.file.write(cfg.statusTokenFilePath, statusToken);
} while ((changes.type != JSON_TYPE.OBJECT) && (("@odata.nextLink" in changes) !is null));
} while (!((changes.type == JSON_TYPE.OBJECT) && (("@odata.nextLink" in changes) is null)));
} catch (ErrnoException e) {
throw new SyncException(e.msg, e);
} catch (FileException e) {