diff --git a/nise-replay-viewer/src/interface/App.tsx b/nise-replay-viewer/src/interface/App.tsx index 449d6d8..6e238cf 100644 --- a/nise-replay-viewer/src/interface/App.tsx +++ b/nise-replay-viewer/src/interface/App.tsx @@ -14,10 +14,8 @@ export function App() { let pathReplayId = location.pathname.slice(1, location.pathname.length); const loadReplay = async () => { - // TODO: Check for security? - await OsuRenderer.loadReplayFromUrl(`http://localhost:8080/score/${pathReplayId}/replay`); + await OsuRenderer.loadReplayFromUrl(`https://nise.moe/api/score/${pathReplayId}/replay`); OsuRenderer.setPlaying(true); - // await OsuRenderer.loadReplayFromUrl(`https://nise.moe/api/score/${pathReplayId}/replay`); }; if(replayId !== pathReplayId) {