Skip to content

Commit 45b0772

Browse files
committed
fix: lr2ir.com zombocom
1 parent 600bee4 commit 45b0772

2 files changed

Lines changed: 5 additions & 8 deletions

File tree

typescript/client/src/components/game/charts/ChartInfoFormat.tsx

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -150,10 +150,8 @@ function ChartInfoMiddle({
150150
View Chart
151151
</ExternalLink>
152152
<br />
153-
<ExternalLink
154-
href={`http://www.dream-pro.info/~lavalse/LR2IR/search.cgi?&bmsmd5=${bmsChart.data.hashMD5}`}
155-
>
156-
View on LR2IR
153+
<ExternalLink href={`https://lr2ir.com/charts/${bmsChart.data.hashMD5}`}>
154+
View on LR2IR Archive
157155
</ExternalLink>
158156
</>
159157
);
@@ -162,10 +160,8 @@ function ChartInfoMiddle({
162160

163161
return (
164162
<>
165-
<ExternalLink
166-
href={`http://www.dream-pro.info/~lavalse/LR2IR/search.cgi?&bmsmd5=${pmsChart.data.hashMD5}`}
167-
>
168-
View on LR2IR
163+
<ExternalLink href={`https://lr2ir.com/charts/${pmsChart.data.hashMD5}`}>
164+
View on LR2IR Archive
169165
</ExternalLink>
170166
</>
171167
);

typescript/sieglinde/src/util.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ export async function FetchScoresForMD5(md5: string) {
2222

2323
return data;
2424
} catch {
25+
// TODO(zk): fix, point at lr2ir.com
2526
const scores = await fetch(
2627
`http://dream-pro.info/~lavalse/LR2IR/2/getrankingxml.cgi?songmd5=${md5}&id=1`,
2728
).then((r) => r.text());

0 commit comments

Comments
 (0)