Skip to content

Commit

Permalink
fix: Increase IndexedDB timeout (#4984)
Browse files Browse the repository at this point in the history
Related to #4625
  • Loading branch information
avelad authored Feb 9, 2023
1 parent 07787a8 commit ea290ab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/offline/indexeddb/storage_mechanism.js
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ shaka.offline.indexeddb.StorageMechanism = class {
shaka.util.Error.Category.STORAGE,
shaka.util.Error.Code.INDEXED_DB_INIT_TIMED_OUT));
});
timeOutTimer.tickAfter(2);
timeOutTimer.tickAfter(5);

const open = window.indexedDB.open(name, version);
open.onsuccess = (event) => {
Expand Down

0 comments on commit ea290ab

Please sign in to comment.