Skip to content

Commit edcf195

Browse files
committed
Push
1 parent 54af818 commit edcf195

File tree

4 files changed

+7
-2
lines changed

4 files changed

+7
-2
lines changed

.gitignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
webosu.online.key
2+
webosu.online.pem
3+
robots.txt
4+
sitemap.txt
5+
arc-sw.js
File renamed without changes.

index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,7 @@ <h2>Random Beatmaps<h2>
195195
function refreshLivescore(){
196196
let xhr = new XMLHttpRequest();
197197
xhr.responseType = 'text';
198-
xhr.open("GET", "https://3000-magenta-cockroach-8wmgi1ls.ws-us09.gitpod.io/");
198+
xhr.open("GET", "http://127.0.0.1:3001/");
199199
xhr.onload = function() {
200200
showActivity(JSON.parse(xhr.response));
201201
}

scripts/overlay/score.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -251,7 +251,7 @@ define([], function () {
251251

252252
function uploadScore(summary) {
253253
let xhr = new XMLHttpRequest();
254-
let url = "https://3001-magenta-cockroach-8wmgi1ls.ws-us09.gitpod.io/";
254+
let url = "http://127.0.0.1:3000/";
255255
url += "?sid=" + encodeURIComponent(summary.sid);
256256
url += "&bid=" + encodeURIComponent(summary.bid);
257257
url += "&title=" + encodeURIComponent(summary.title);

0 commit comments

Comments
 (0)