mirror of
https://github.com/fhem/fhem-mirror.git
synced 2025-03-10 09:16:53 +00:00
01_FHEMWEB.pm: fix warning for strange browsers (Forum #65257)
git-svn-id: https://svn.fhem.de/fhem/trunk@13150 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
parent
16c21325d2
commit
1b48d3fa78
@ -467,8 +467,9 @@ FW_Read($$)
|
||||
delete $hash->{CONTENT_LENGTH};
|
||||
$hash->{LASTACCESS} = $now;
|
||||
|
||||
if($method eq 'GET' && $FW_httpheader{Connection} =~ /Upgrade/i &&
|
||||
$FW_use_sha) {
|
||||
|
||||
if($FW_use_sha && $method eq 'GET' &&
|
||||
$FW_httpheader{Connection} && $FW_httpheader{Connection} =~ /Upgrade/i) {
|
||||
|
||||
my $shastr = Digest::SHA::sha1_base64($FW_httpheader{'Sec-WebSocket-Key'}.
|
||||
"258EAFA5-E914-47DA-95CA-C5AB0DC85B11");
|
||||
|
Loading…
x
Reference in New Issue
Block a user