diff --git a/html/src/app.js b/html/src/app.js index 386f4c7f..9ae47ea8 100644 --- a/html/src/app.js +++ b/html/src/app.js @@ -3432,8 +3432,8 @@ CefSharp.BindObjectAsync( var ctx = data[--i]; // GPS, Online, Offline, Status, Avatar if ((ctx.type !== 'Avatar') && - !((ctx.type === 'GPS') && (ctx.location[0] === 'private') && (this.hidePrivateFromFeed === true)) && - !(((ctx.type === 'Online') || (ctx.type === 'Offline')) && (this.hideLoginsFromFeed === true))) { + !((ctx.type === 'GPS') && (ctx.location[0] === 'private') && (this.hidePrivateFromFeed === true)) && + !(((ctx.type === 'Online') || (ctx.type === 'Offline')) && (this.hideLoginsFromFeed === true))) { arr.push({ ...ctx, isFriend: this.friends.has(ctx.userId), diff --git a/html/src/vr.js b/html/src/vr.js index a506a9f5..7e3ee174 100644 --- a/html/src/vr.js +++ b/html/src/vr.js @@ -665,15 +665,15 @@ CefSharp.BindObjectAsync( this.cpuUsage = cpuUsage.toFixed(2); }); if (VRCXStorage.GetBool('VRCX_hideDevicesFromFeed') === false) { - VRCX.GetVRDevices().then((devices) => { - devices.forEach((device) => { - device[2] = parseInt(device[2], 10); - }); - this.devices = devices; - }); + VRCX.GetVRDevices().then((devices) => { + devices.forEach((device) => { + device[2] = parseInt(device[2], 10); + }); + this.devices = devices; + }); } else { - this.devices = ""; + this.devices = ''; } this.updateSharedFeed(); };