|
@@ -204,8 +204,10 @@ DRACOLoader.prototype = Object.assign( Object.create( Loader.prototype ), {
|
|
.then( ( message ) => this._createGeometry( message.geometry ) );
|
|
.then( ( message ) => this._createGeometry( message.geometry ) );
|
|
|
|
|
|
// Remove task from the task list.
|
|
// Remove task from the task list.
|
|
|
|
+ // Note: replaced '.finally()' with '.catch().then()' block - iOS 11 support (#19416)
|
|
geometryPending
|
|
geometryPending
|
|
- .finally( () => {
|
|
|
|
|
|
+ .catch( () => true )
|
|
|
|
+ .then( () => {
|
|
|
|
|
|
if ( worker && taskID ) {
|
|
if ( worker && taskID ) {
|
|
|
|
|