Skip to content

Commit 69500f3

Browse files
committed
added HmIP-RCV-50 to isRemote check to also catch HmIP virtual remotes
1 parent dc500f4 commit 69500f3

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

xmlapi/devicelist.cgi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ if {[info exists sid] && [check_session $sid]} {
4141
{
4242
object oDevice = dom.GetObject(sDevId);
4343
boolean bDevReady = oDevice.ReadyConfig();
44-
boolean isRemote = ( ("HMW-RCV-50" == oDevice.HssType()) || ("HM-RCV-50" == oDevice.HssType() ) );
44+
boolean isRemote = ( ("HMW-RCV-50" == oDevice.HssType()) || ("HM-RCV-50" == oDevice.HssType()) || ("HmIP-RCV-50" == oDevice.HssType()) );
4545

4646
if( (true == bDevReady) && ( ( isRemote == false ) || ( show_remote == 1 ) ) )
4747
{

xmlapi/statelist.cgi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ if {[info exists sid] && [check_session $sid]} {
7070
{
7171
object oDevice = dom.GetObject(sDevId);
7272

73-
boolean isRemote = ( ("HMW-RCV-50" == oDevice.HssType()) || ("HM-RCV-50" == oDevice.HssType() ) );
73+
boolean isRemote = ( ("HMW-RCV-50" == oDevice.HssType()) || ("HM-RCV-50" == oDevice.HssType()) || ("HmIP-RCV-50" == oDevice.HssType()) );
7474

7575
if( oDevice.ReadyConfig() && ( ( isRemote == false ) || ( show_remote == 1 ) ) )
7676
{

0 commit comments

Comments
 (0)