summaryrefslogtreecommitdiff
path: root/src/mbgl/map
diff options
context:
space:
mode:
authorJohn Firebaugh <john.firebaugh@gmail.com>2016-02-01 20:25:55 -0800
committerJohn Firebaugh <john.firebaugh@gmail.com>2016-02-01 20:25:55 -0800
commit52689796dfed796a1e949d39be411ccca3041933 (patch)
tree4cfc320ea66acf9d0fff21b1fa64b2a4a4cf0390 /src/mbgl/map
parent8aa3359ff00332ef17157bf3c4452e710cc10b23 (diff)
downloadqtlocation-mapboxgl-52689796dfed796a1e949d39be411ccca3041933.tar.gz
[core] Normalize only raster source tile URLs
Diffstat (limited to 'src/mbgl/map')
-rw-r--r--src/mbgl/map/source.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mbgl/map/source.cpp b/src/mbgl/map/source.cpp
index b142a8471f..7f9b47440b 100644
--- a/src/mbgl/map/source.cpp
+++ b/src/mbgl/map/source.cpp
@@ -109,7 +109,7 @@ void Source::load() {
// from the stylesheet. Then merge in the values parsed from the TileJSON we retrieved
// via the URL.
try {
- newInfo = StyleParser::parseTileJSON(*res.data, url);
+ newInfo = StyleParser::parseTileJSON(*res.data, url, type);
} catch (...) {
observer->onSourceError(*this, std::current_exception());
return;