DevIo.pm: possible WebSocket bugfix (Forum #109910)

git-svn-id: https://svn.fhem.de/fhem/trunk/fhem@22629 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
rudolfkoenig 2020-08-19 07:56:03 +00:00
parent 7849df44c1
commit 6c450a8e70

View File

@ -233,6 +233,11 @@ DevIo_DecodeWS($$)
} }
if(length($hash->{".WSBUF"})) { # There is more data to digest
my $nd = DevIo_DecodeWS($hash, "");
$data .= $nd if(defined($nd));
}
return $data; return $data;
} }