Nikolay Suslov 6 jaren geleden
bovenliggende
commit
1dd424c9a5
1 gewijzigde bestanden met toevoegingen van 4 en 4 verwijderingen
  1. 4 4
      public/app.js

+ 4 - 4
public/app.js

@@ -1713,7 +1713,7 @@ class App {
     let docName = 'savestate_/' + space + '/' + saveName + '_info_vwf_json';
     let world = await db.get('documents').get(space).get(docName).once().then();
     if (world) {
-      let doc = await db.get('documents').get(space).get(docName).once((res) => {
+      let res = await db.get('documents').get(space).get(docName).once().then();
 
         if (res && res !== 'null') {
 
@@ -1738,7 +1738,7 @@ class App {
             }
           }
         }
-      }).then();
+    
     }
     return info
   }
@@ -1760,7 +1760,7 @@ class App {
 
     let world = await db.get('worlds').get(space).once().then();
     if (world) {
-      let doc = await db.get('worlds').get(space).get('info_json').once((res) => {
+      let res = await db.get('worlds').get(space).get('info_json').once().then();
 
         if (res && res !== 'null') {
 
@@ -1786,7 +1786,7 @@ class App {
 
           }
         }
-      }).then();
+      
     }
 
     return info