summaryrefslogtreecommitdiff
path: root/platform
diff options
context:
space:
mode:
authorBrad Leege <bleege@gmail.com>2015-03-24 20:48:52 -0500
committerBrad Leege <bleege@gmail.com>2015-03-24 20:48:52 -0500
commit7d3773110219281912397f99f75daee8a41a3ebb (patch)
tree4dd8f724f08d18d24a970d180ed7f56be55dfd26 /platform
parentfc4fbfd1bc6ec382b05606b40e1c3a1c4817b944 (diff)
downloadqtlocation-mapboxgl-7d3773110219281912397f99f75daee8a41a3ebb.tar.gz
Changing wifi ssid "<<NONE>>" to "NONE" to be consistent with getCurrentCellularNetworkConnectionType
Diffstat (limited to 'platform')
-rw-r--r--platform/ios/MGLMapboxEvents.m4
1 files changed, 2 insertions, 2 deletions
diff --git a/platform/ios/MGLMapboxEvents.m b/platform/ios/MGLMapboxEvents.m
index d85fb41a41..5a9bd94557 100644
--- a/platform/ios/MGLMapboxEvents.m
+++ b/platform/ios/MGLMapboxEvents.m
@@ -322,10 +322,10 @@ NSNumber *scale;
if (info) {
ssid = info[@"SSID"];
} else {
- ssid = @"<<NONE>>";
+ ssid = @"NONE";
}
} else {
- ssid = @"<<NONE>>";
+ ssid = @"NONE";
}
return ssid;