diff --git a/html/src/app.js b/html/src/app.js
index ed4f9852..4cee5bcd 100644
--- a/html/src/app.js
+++ b/html/src/app.js
@@ -5472,10 +5472,14 @@ speechSynthesis.getVoices();
//temp fix
if ((user.status !== 'active') && (user.location === 'private') && (user.state === '') &&
(id) && (id !== API.currentUser.id) &&
- (!API.currentUser.onlineFriends.includes(id)) &&
- (!API.currentUser.activeFriends.includes(id))) {
- // Offline
- style.offline = true;
+ (!API.currentUser.onlineFriends.includes(id))) {
+ if (API.currentUser.activeFriends.includes(id)) {
+ // Active
+ style.active = true;
+ } else {
+ // Offline
+ style.offline = true;
+ }
} else if (user.location === 'offline') {
// Offline
style.offline = true;