From 8125e326915c22b0f6da563e758781b35af562a7 Mon Sep 17 00:00:00 2001 From: pypy Date: Mon, 20 Jan 2020 19:54:46 +0900 Subject: [PATCH] bug fix --- html/app.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/html/app.js b/html/app.js index 0ee292f0..61b2c334 100644 --- a/html/app.js +++ b/html/app.js @@ -4041,7 +4041,7 @@ CefSharp.BindObjectAsync( // App: gameLog $app.data.lastLocation = ''; - $app.data.$lastLocation = {}; + $app.data.lastLocation$ = {}; $app.data.discordActive = VRCXStorage.GetBool('discordActive'); $app.data.discordInstance = VRCXStorage.GetBool('discordInstance'); var saveDiscordOption = function () { @@ -4140,10 +4140,10 @@ CefSharp.BindObjectAsync( Discord.SetActive(false); return; } - if (this.lastLocation !== this.$lastLocation.tag) { + if (this.lastLocation !== this.lastLocation$.tag) { var L = API.parseLocation(this.lastLocation); L.worldName = L.worldId; - this.$lastLocation = L; + this.lastLocation$ = L; if (L.worldId) { var ref = API.cachedWorlds.get(L.worldId); if (ref) { @@ -4160,7 +4160,7 @@ CefSharp.BindObjectAsync( } // NOTE // 글자 수가 짧으면 업데이트가 안된다.. - var LL = this.$lastLocation; + var LL = this.lastLocation$; if (LL.worldName.length < 2) { LL.worldName += '\uFFA0'.repeat(2 - LL.worldName.length); }