mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-05-05 22:52:22 +02:00
This fixes a crash on initial load of the page http://demo.actualbudget.org. Minimal repro of the issue (error in the console without this PR): <script> const r = indexedDB.open("t", 1); r.onupgradeneeded = e => e.target.result.createObjectStore("s", { keyPath: "id" }); r.onsuccess = () => r.result.transaction("s", "readonly").objectStore("s").getAllKeys(); </script>