mirror of
https://github.com/openseadragon/openseadragon.git
synced 2025-04-04 06:13:31 +03:00
Fix tests: bug in type equality checking
This commit is contained in:
parent
82e1160508
commit
e403e29312
1 changed files with 2 additions and 2 deletions
|
@ -302,7 +302,7 @@
|
|||
return;
|
||||
}
|
||||
//must re-check types since we perform in a queue of conversion requests
|
||||
if (type !== this._type || (Array.isArray(type) && !type.includes(this._type))) {
|
||||
if ((typeof type === "string" && type !== this._type) || (Array.isArray(type) && !type.includes(this._type))) {
|
||||
//ensures queue gets executed after finish
|
||||
this._convert(this._type, type);
|
||||
this._promise.then(data => resolver(data));
|
||||
|
@ -317,7 +317,7 @@
|
|||
return promise;
|
||||
}
|
||||
|
||||
if (type !== this._type || (Array.isArray(type) && !type.includes(this._type))) {
|
||||
if ((typeof type === "string" && type !== this._type) || (Array.isArray(type) && !type.includes(this._type))) {
|
||||
this._convert(this._type, type);
|
||||
}
|
||||
return this._promise;
|
||||
|
|
Loading…
Add table
Reference in a new issue