mirror of
https://github.com/kasmtech/KasmVNC.git
synced 2025-01-08 15:08:47 +01:00
Fix bad BasicCompression check in Tight decoder
This commit is contained in:
parent
55178c76b8
commit
c7a7ce70be
@ -59,7 +59,7 @@ export default class TightDecoder {
|
||||
} else if (this._ctl === 0x0B) {
|
||||
ret = this._webpRect(x, y, width, height,
|
||||
sock, display, depth);
|
||||
} else if ((this._ctl & 0x80) == 0) {
|
||||
} else if ((this._ctl & 0x08) == 0) {
|
||||
ret = this._basicRect(this._ctl, x, y, width, height,
|
||||
sock, display, depth);
|
||||
} else {
|
||||
|
Loading…
Reference in New Issue
Block a user