PadMessageHandler: Delete unnecessary protocolVersion

We can assume that the client code is always in sync with what the
server expects.
This commit is contained in:
Richard Hansen 2021-10-30 00:34:15 -04:00
parent ce730b0493
commit d36a37d666
5 changed files with 0 additions and 20 deletions

View file

@ -202,7 +202,6 @@ const sendClientReady = (isReconnect) => {
padId,
sessionID: Cookies.get('sessionID'),
token,
protocolVersion: 2,
};
// this is a reconnect, lets tell the server our revisionnumber

View file

@ -102,7 +102,6 @@ const sendSocketMsg = (type, data) => {
padId,
token,
sessionID: Cookies.get('sessionID'),
protocolVersion: 2,
});
};