diff --git a/html/app.js b/html/app.js index b7d5eb15..fd59aaef 100644 --- a/html/app.js +++ b/html/app.js @@ -3705,7 +3705,9 @@ CefSharp.BindObjectAsync( $app.methods.userStatusClass = function (user) { var style = {}; if (user) { - if (user.state === 'active') { + // due to social status, check if the user isn't currentUser + if (user.state === 'active' && + user.id !== API.currentUser.id) { style.inactive = true; } else if (user.location === 'offline') { style.offline = true;