From 1071af14d904d52fcc892a292794351b66e89cfc Mon Sep 17 00:00:00 2001 From: Natsumi Date: Tue, 30 Mar 2021 00:29:22 +1300 Subject: [PATCH] Bug with orange status location being private when user is offline --- html/src/app.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/html/src/app.js b/html/src/app.js index 5ef210e9..dd6b8775 100644 --- a/html/src/app.js +++ b/html/src/app.js @@ -4997,7 +4997,8 @@ speechSynthesis.getVoices(); ctx.state !== 'online' && typeof ref !== 'undefined' && ref.location !== '' && - ref.location !== 'offline') { + ref.location !== 'offline' && + ref.location !== 'private') { API.getUser({ userId: id });