You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The following code will result in that the main promise is never fulfilled:
Dexie.Promise.resolve(null).then(function(){thrownewError("apa");}).then(function(){// Should not come here}).catch(TypeError,function(e){// Should not come here either because the error thrown was not TypeError}).catch(function(e){// But should come here. But it doesnt!}).finally(function(){// ..and should definitely come here. But it doesnt!});
The text was updated successfully, but these errors were encountered:
The following code will result in that the main promise is never fulfilled:
The text was updated successfully, but these errors were encountered: