forked from abner/for-legacy-web
If IDB is not present, allow app to load as normal
parent
fd7abea536
commit
06b4e9bc87
|
|
@ -1 +1 @@
|
||||||
Subproject commit 50570240bc09fc23794bb4452c1c0f35599b3219
|
Subproject commit 9db39a2eecc5fbb7ed06d4598da60700e96e3274
|
||||||
|
|
@ -138,7 +138,9 @@ function Context({ auth, sync, children, dispatcher }: Props) {
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
(async () => {
|
(async () => {
|
||||||
await client.restore();
|
if (client.db) {
|
||||||
|
await client.restore();
|
||||||
|
}
|
||||||
|
|
||||||
if (auth.active) {
|
if (auth.active) {
|
||||||
dispatcher({ type: "QUEUE_FAIL_ALL" });
|
dispatcher({ type: "QUEUE_FAIL_ALL" });
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue