Commit cb642ea0 authored by Chris Scott's avatar Chris Scott

Re-order incoming config params due to previous Android pr by zgiles, which...

Re-order incoming config params due to previous Android pr by zgiles, which inserted a new Android config param headers
parent 55b17d3b
......@@ -82,11 +82,11 @@
url = [command.arguments objectAtIndex: 1];
// Params.
stationaryRadius = [[command.arguments objectAtIndex: 2] intValue];
distanceFilter = [[command.arguments objectAtIndex: 3] intValue];
locationTimeout = [[command.arguments objectAtIndex: 4] intValue];
desiredAccuracy = [self translateDesiredAccuracy:[[command.arguments objectAtIndex: 5] intValue]];
isDebugging = [[command.arguments objectAtIndex: 6] boolValue];
stationaryRadius = [[command.arguments objectAtIndex: 3] intValue];
distanceFilter = [[command.arguments objectAtIndex: 4] intValue];
locationTimeout = [[command.arguments objectAtIndex: 5] intValue];
desiredAccuracy = [self translateDesiredAccuracy:[[command.arguments objectAtIndex: 6] intValue]];
isDebugging = [[command.arguments objectAtIndex: 7] boolValue];
syncCallbackId = command.callbackId;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment