2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-03-10 03:06:37 +00:00

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

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

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;
}