File tree 3 files changed +7
-1
lines changed
3 files changed +7
-1
lines changed Original file line number Diff line number Diff line change 5
5
##### Fixes :wrench :
6
6
7
7
- Fixed several artifcats on mobile devices caused by using insufficient precision. [ #9064 ] ( https://github.com/CesiumGS/cesium/pull/9064 )
8
+ - Fixed handling of ` data: ` scheme for the Cesium ion logo URL. [ #9085 ] ( https://github.com/CesiumGS/cesium/pull/9085 )
8
9
9
10
### 1.72 - 2020-08-03
10
11
Original file line number Diff line number Diff line change @@ -59,6 +59,7 @@ See [CONTRIBUTING.md](CONTRIBUTING.md) for details on how to contribute to Cesiu
59
59
- [ Emma Krantz] ( https://github.com/KeyboardSounds )
60
60
- [ Stephen Davies] ( https://github.com/steve9164 )
61
61
- [ Rowan Winsemius] ( https://github.com/rowanwins )
62
+ - [ Regina Pramesti] ( https://github.com/reginapramesti )
62
63
- [ EU Edge] ( http://euedge.com/ )
63
64
- [ Ákos Maróy] ( https://github.com/akosmaroy )
64
65
- [ Raytheon Intelligence and Information Systems] ( http://www.raytheon.com/ )
Original file line number Diff line number Diff line change @@ -516,7 +516,11 @@ function getDefaultCredit() {
516
516
517
517
// When hosting in a WebView, the base URL scheme is file:// or ms-appx-web://
518
518
// which is stripped out from the Credit's <img> tag; use the full path instead
519
- if ( logo . indexOf ( "http://" ) !== 0 && logo . indexOf ( "https://" ) !== 0 ) {
519
+ if (
520
+ logo . indexOf ( "http://" ) !== 0 &&
521
+ logo . indexOf ( "https://" ) !== 0 &&
522
+ logo . indexOf ( "data:" ) !== 0
523
+ ) {
520
524
var logoUrl = new Uri ( logo ) ;
521
525
logo = logoUrl . getPath ( ) ;
522
526
}
You can’t perform that action at this time.
0 commit comments