30_HUEBridge.pm: don't try to read /auth/v1 for deCONZ

git-svn-id: https://svn.fhem.de/fhem/trunk@25571 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
justme1968
2022-01-27 18:58:06 +00:00
parent 24b27c9912
commit 5a5c75f3f3

View File

@@ -573,17 +573,19 @@ HUEBridge_OpenDev($)
$hash->{mac} = $result->{mac};
my $params = {
url => "https://$hash->{host}/auth/v1",
#httpversion => '1.1',
method => 'GET',
timeout => 5,
header => { 'HUE-Application-Key' => $attr{$name}{key}, },
type => 'application id',
hash => $hash,
callback => \&HUEBridge_dispatch,
};
HttpUtils_NonblockingGet( $params );
if( !$hash->{is_deCONZ} ) {
my $params = {
url => "https://$hash->{host}/auth/v1",
#httpversion => '1.1',
method => 'GET',
timeout => 5,
header => { 'HUE-Application-Key' => $attr{$name}{key}, },
type => 'application id',
hash => $hash,
callback => \&HUEBridge_dispatch,
};
HttpUtils_NonblockingGet( $params );
}
readingsSingleUpdate($hash, 'state', 'connected', 1 );