mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-10-27 10:29:23 +00: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> |
||
|---|---|---|
| .. | ||
| Algorithms.cpp | ||
| Algorithms.h | ||
| ConnectionQueueHandler.h | ||
| Database.cpp | ||
| Database.h | ||
| Index.cpp | ||
| Index.h | ||
| Key.cpp | ||
| Key.h | ||
| KeyGenerator.h | ||
| ObjectStore.cpp | ||
| ObjectStore.h | ||
| RequestList.cpp | ||
| RequestList.h | ||