Skip to content

Commit

Permalink
fix: 랭킹 화면에서 safe filter가 적용되지 않던 문제
Browse files Browse the repository at this point in the history
  • Loading branch information
HyeokjinKang committed May 8, 2024
1 parent 12cb46f commit c035177
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion public/js/game.js
Original file line number Diff line number Diff line change
Expand Up @@ -1262,7 +1262,7 @@ const rankUpdate = async () => {
<td>${i + 1}</td>
<td>
<div class="rankProfileContainer" onclick="profileScreen('${e.userid}')">
<img src="${e.picture}" class="rankProfile" />
<img src="${e.picture}" class="rankProfile ${e.explicit % 2 == 1 ? "blur" : ""}" />
${e.nickname}
</div>
</td>
Expand Down

0 comments on commit c035177

Please sign in to comment.