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
Throughout the library, there are several instances of req.onsuccess = req.onerror, which results in promises resolving when they should have been rejected.
Additionally, many methods within the IndexedDB API can potentially raise DOMExceptions, which are not caught at all by angular-indexedDB. These exceptions can be particularly problematic, because they are often raised within then() blocks inside the library (which makes them impossible to catch from the outside).
The text was updated successfully, but these errors were encountered:
Throughout the library, there are several instances of
req.onsuccess = req.onerror
, which results in promises resolving when they should have been rejected.Additionally, many methods within the IndexedDB API can potentially raise
DOMException
s, which are not caught at all by angular-indexedDB. These exceptions can be particularly problematic, because they are often raised withinthen()
blocks inside the library (which makes them impossible to catch from the outside).The text was updated successfully, but these errors were encountered: