Skip to content

Commit

Permalink
fix: expected code
Browse files Browse the repository at this point in the history
Signed-off-by: Dongwan Seo <[email protected]>
  • Loading branch information
raiiiny authored May 6, 2024
1 parent fed209e commit 8e54221
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions websites/S/Sorryfield/presence.ts
Original file line number Diff line number Diff line change
Expand Up @@ -239,11 +239,11 @@ presence.on("UpdateData", async () => {
presenceData.buttons = [{ label: "리플레이 보기", url: href }];
} else if (pathname.includes("/shop")) presenceData.state = "상점";
else if (pathname.includes("/sync")) presenceData.state = "환경 설정";
else if (pathname.includes("/ranking"))
else if (pathname.includes("/ranking")) {
presenceData.state = `${
document.querySelector("h2").textContent
} 모드 짬 랭킹`;
else if (pathname === "/java/multiplayer") {
} else if (pathname === "/java/multiplayer") {
presenceData.details = "자바! 멀티플레이어";
presenceData.largeImageKey = Assets.ChartMultiPlayer;
if (document.querySelector(".room-header")) {
Expand Down

0 comments on commit 8e54221

Please sign in to comment.