From 22d129a4c361d6e85594ac5ec33015ba133f1add Mon Sep 17 00:00:00 2001 From: pypy Date: Sat, 11 Jan 2020 22:21:05 +0900 Subject: [PATCH] bugfix --- html/app.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/html/app.js b/html/app.js index aa0d7e77..e5028b0f 100644 --- a/html/app.js +++ b/html/app.js @@ -5884,8 +5884,7 @@ if (window.CefSharp) { D.avatars = []; D.isWorldsLoading = false; D.isAvatarsLoading = false; - for (var key in API.world) { - var ref = API.cachedWorlds.get(key); + for (var ref of API.cachedWorlds.values()) { if (ref.authorId === D.id) { D.worlds.push(ref); }