aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Powers <markppowers0@gmail.com>2018-12-12 23:34:02 -0500
committerMark Powers <markppowers0@gmail.com>2018-12-12 23:34:02 -0500
commit93d4d8a1eba6ab6b714d330dc266f7e41e09a31e (patch)
tree733fcd037fc048f29fe37096f9b26444a048c2ca
parent04f9b5b79c3fb26f629fa151794b20cfc86f8320 (diff)
Update
-rwxr-xr-xsrc/html/snake.html3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/html/snake.html b/src/html/snake.html
index e366e2b..e2158e5 100755
--- a/src/html/snake.html
+++ b/src/html/snake.html
@@ -206,9 +206,8 @@
const urlParams = new URLSearchParams(window.location.search);
const uid = urlParams.get('uid');
const mid = urlParams.get('mid');
- const cid = urlParams.get('cid');
- const request = new Request(`/setScore?uid=${uid}&cid=${cid}&mid=${mid}&score=${score}`);
+ const request = new Request(`/setScore?uid=${uid}&mid=${mid}&score=${score}`);
fetch(request).then(response => console.log("response"));
}
</script>