fix permission scope
diff --git a/htdocs/js/boxer.js b/htdocs/js/boxer.js
index b9aea59..32f27a6 100644
--- a/htdocs/js/boxer.js
+++ b/htdocs/js/boxer.js
@@ -468,7 +468,7 @@
 
 function begin_oauth_github() {
     let oauth_url = encodeURIComponent(`https://${hostname}/boxer.html?action=oauth&key=github&state=` + state);
-    let ghurl = `https://github.com/login/oauth/authorize?client_id=${gh_client_id}&redirect_uri=${oauth_url}&scope=read%3Auser`;
+    let ghurl = `https://github.com/login/oauth/authorize?client_id=${gh_client_id}&redirect_uri=${oauth_url}`;
     console.log(ghurl);
     location.href = ghurl;
 }
\ No newline at end of file