From 82eb97462bcfeb10c16c011625a60ec0baa63b16 Mon Sep 17 00:00:00 2001 From: David Luzar Date: Wed, 5 Feb 2020 17:57:08 +0100 Subject: [PATCH] fix restoring from localStorage (#715) --- src/index.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/index.tsx b/src/index.tsx index 348fbbf6..b7342e92 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -353,6 +353,8 @@ export class App extends React.Component { ); if (match) { this.loadScene(match[1], match[2]); + } else { + this.loadScene(null, undefined); } } }