Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
dimdenGD committed Aug 28, 2024
1 parent 0bd45ba commit 991db2e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions layouts/profile/script.js
Original file line number Diff line number Diff line change
Expand Up @@ -730,7 +730,7 @@ async function renderFollowing(clear = true, cursor) {
label = `${formatLargeNumber(u.followers_count)} ${vars.modernUI ? LOC.followers.message : LOC.followers.message.toLowerCase()}`;
}
let usernameClass = '';
if(vars.showBoringIndicators) {
if(vars.showBoringIndicators && !u.protected) {
if(!u.status) {
usernameClass = 'user-indicator-no-status';
} else if(u.status) {
Expand Down Expand Up @@ -1018,7 +1018,7 @@ async function renderFollowers(clear = true, cursor) {
label = `${formatLargeNumber(u.followers_count)} ${vars.modernUI ? LOC.followers.message : LOC.followers.message.toLowerCase()}`;
}
let usernameClass = '';
if(vars.showBoringIndicators) {
if(vars.showBoringIndicators && !u.protected) {
if(!u.status) {
usernameClass = 'user-indicator-no-status';
} else if(u.status) {
Expand Down

0 comments on commit 991db2e

Please sign in to comment.