diff --git a/server/loginHandler.js b/server/loginHandler.js index 9746740..8304f8a 100644 --- a/server/loginHandler.js +++ b/server/loginHandler.js @@ -147,7 +147,6 @@ module.exports = async function(req, res, loginInfo) { // Complete login res.writeHead(200, { "cho-token": NewUser.uuid, - "cho-protocol": global.protocolVersion, "Connection": "keep-alive", "Keep-Alive": "timeout=5, max=100", }); diff --git a/server/serverHandler.js b/server/serverHandler.js index 8c9a120..7990b03 100644 --- a/server/serverHandler.js +++ b/server/serverHandler.js @@ -319,8 +319,6 @@ module.exports = async function(req, res) { res.removeHeader('X-Powered-By'); res.removeHeader('Date'); res.writeHead(200, { - "cho-protocol": global.protocolVersion, - // Nice to have :) "Connection": "keep-alive", "Keep-Alive": "timeout=5, max=100", });