Migrate OSM cache to localForage/IndexedDB

We don't want to hit limits with localStorage, and it's non-blocking
This commit is contained in:
2026-08-19 10:39:58 -06:00
parent 45f6f898fa
commit 61242420d1
10 changed files with 1421 additions and 1231 deletions
+1 -1
View File
@@ -20,7 +20,7 @@ class MockOsmService extends Service {
}
getCachedOsmObject() {
return null;
return Promise.resolve(null);
}
}