Continue with ClientInitialisation when SecurityType is None

This commit is contained in:
Philipp 2023-08-28 12:01:43 +02:00 committed by GitHub
parent f791d32c28
commit 37320aa55a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -1925,7 +1925,7 @@ export default class RFB extends EventTargetMixin {
_negotiateAuthentication() { _negotiateAuthentication() {
switch (this._rfbAuthScheme) { switch (this._rfbAuthScheme) {
case securityTypeNone: case securityTypeNone:
this._rfbInitState = 'SecurityResult'; this._rfbInitState = 'ClientInitialisation';
return true; return true;
case securityTypeXVP: case securityTypeXVP: