This repository was archived by the owner on Oct 28, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +13
-1
lines changed
Expand file tree Collapse file tree 3 files changed +13
-1
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,11 @@ All notable changes to this package will be documented in this file.
55The format is based on [ Keep a Changelog] ( http://keepachangelog.com/en/1.0.0/ )
66and this project adheres to [ Semantic Versioning] ( http://semver.org/spec/v2.0.0.html ) .
77
8+ ## [ 1.10.2] - 14-1-2025
9+
10+ ### Fixed
11+ - QueryParameters now also works with previous keys
12+
813## [ 1.10.1] - 10-1-2025
914
1015### Fixed
Original file line number Diff line number Diff line change @@ -666,6 +666,13 @@ private string GetFullContentUri(Tile tile)
666666 contentQueryParameters . Add ( key , queryParameters [ key ] ) ;
667667 }
668668 }
669+ foreach ( string key in contentQueryParameters . Keys )
670+ {
671+ if ( ! queryParameters . AllKeys . Contains ( key ) )
672+ {
673+ queryParameters . Add ( key , contentQueryParameters [ key ] ) ;
674+ }
675+ }
669676
670677 uriBuilder . Query = ToQueryString ( contentQueryParameters ) ;
671678 var url = uriBuilder . ToString ( ) ;
Original file line number Diff line number Diff line change 11{
22 "name" : " eu.netherlands3d.tiles3d" ,
33 "displayName" : " Netherlands 3D - 3DTiles" ,
4- "version" : " 1.10.1 " ,
4+ "version" : " 1.10.2 " ,
55 "unity" : " 2022.2" ,
66 "type" : " library" ,
77 "keywords" : [
You can’t perform that action at this time.
0 commit comments