Browse Source

fix load details

Nikolay Suslov 6 years ago
parent
commit
bc60d5f64f
1 changed files with 2 additions and 2 deletions
  1. 2 2
      public/app.js

+ 2 - 2
public/app.js

@@ -363,7 +363,7 @@ class App {
 
   }
 
-  HandleWorldAbout(ctx) {
+  async HandleWorldAbout(ctx) {
 
     console.log("about world");
 
@@ -381,7 +381,7 @@ class App {
     }
 
     let worldApp = new WorldApp(userAlias, worldName, saveName);
-    worldApp.initWorldGUI();
+    await worldApp.initWorldGUI();
 
   }