fix restoring from localStorage (#715)

This commit is contained in:
David Luzar
2020-02-05 17:57:08 +01:00
committed by GitHub
parent b7a6ceba68
commit 82eb97462b

View File

@ -353,6 +353,8 @@ export class App extends React.Component<any, AppState> {
);
if (match) {
this.loadScene(match[1], match[2]);
} else {
this.loadScene(null, undefined);
}
}
}