Skip to content

Commit

Permalink
Merge pull request #5871 from kiselev-dv/patch-3
Browse files Browse the repository at this point in the history
Don't reject the whole KML Data load on Network Link failure
  • Loading branch information
Hannah authored Oct 20, 2017
2 parents b561e56 + 24eb802 commit c1b7f42
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions Source/DataSources/KmlDataSource.js
Original file line number Diff line number Diff line change
Expand Up @@ -2217,6 +2217,8 @@ define([
} else if (viewRefreshMode === 'onRegion') {
oneTimeWarning('kml-refrehMode-onRegion', 'KML - Unsupported viewRefreshMode: onRegion');
}
}).otherwise(function(error) {
oneTimeWarning('An error occured during loading ' + linkUrl);
});

promises.push(promise);
Expand Down

0 comments on commit c1b7f42

Please sign in to comment.