Fix errors when loading empty slots in local mode
parent
00255cb09a
commit
7946938828
|
@ -521,8 +521,13 @@ export class GameData {
|
||||||
|
|
||||||
await handleSessionData(response);
|
await handleSessionData(response);
|
||||||
});
|
});
|
||||||
} else
|
} else {
|
||||||
await handleSessionData(atob(localStorage.getItem(`sessionData${slotId ? slotId : ''}`)));
|
const sessionData = localStorage.getItem(`sessionData${slotId ? slotId : ''}`);
|
||||||
|
if (sessionData)
|
||||||
|
await handleSessionData(atob(sessionData));
|
||||||
|
else
|
||||||
|
return resolve(null);
|
||||||
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue