Skip to content

Commit

Permalink
Bug fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
J0N4S13 authored Mar 4, 2024
1 parent 1dcf308 commit c053208
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion blame/blame.user.js
Original file line number Diff line number Diff line change
Expand Up @@ -266,7 +266,7 @@ var refreshBlame = function() {
blUT.innerHTML = "<table>";
for (var uid in W.model.users.objects) {
var user = W.model.users.getObjectById(uid);
if(user.attributes.rank > W.loginManager.user.attributes.rank || (W.loginManager.user.attributes.rank > 2 && abc))
if(user.attributes.rank > W.loginManager.user.attributes.rank || (user.attributes.rank > 2 && abc))
continue;
var tr = t.insertRow();
var tdu = tr.insertCell();
Expand Down

0 comments on commit c053208

Please sign in to comment.