From 0db4f79404be80644160665573070b271290866f Mon Sep 17 00:00:00 2001 From: nasseeder1 Date: Fri, 18 Oct 2019 20:36:53 +0000 Subject: [PATCH] 49_SSCamSTRM: set parentState initial in Define, Forum: 45671.msg985136.html#msg985136 git-svn-id: https://svn.fhem.de/fhem/trunk@20378 2b470e98-0d58-463d-a4d8-8e2adae1ed80 --- fhem/CHANGED | 2 ++ fhem/FHEM/49_SSCamSTRM.pm | 4 +++- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/fhem/CHANGED b/fhem/CHANGED index b11a844f1..66d5526ca 100644 --- a/fhem/CHANGED +++ b/fhem/CHANGED @@ -1,5 +1,7 @@ # Add changes at the top of the list. Keep it in ASCII, and 80-char wide. # Do not insert empty lines here, update check depends on it. + - change: 49_SSCamSTRM: set parentState initial in Define, + Forum: 45671.msg985136.html#msg985136 - change: 88_Timer: added popup for user rename Def to DEF for FHEM default (with comp. checker) added more doc in commandref diff --git a/fhem/FHEM/49_SSCamSTRM.pm b/fhem/FHEM/49_SSCamSTRM.pm index ef1b669f6..f5277c777 100644 --- a/fhem/FHEM/49_SSCamSTRM.pm +++ b/fhem/FHEM/49_SSCamSTRM.pm @@ -35,6 +35,7 @@ eval "use FHEM::Meta;1" or my $modMetaAbsent = 1; # Versions History intern our %SSCamSTRM_vNotesIntern = ( + "2.10.1" => "18.10.2019 set parentState initial in Define, Forum: https://forum.fhem.de/index.php/topic,45671.msg985136.html#msg985136 ", "2.10.0" => "21.09.2019 new attribute hideAudio ", "2.9.0" => "19.09.2019 new attribute noLink ", "2.8.0" => "09.09.2019 new attribute hideButtons ", @@ -129,7 +130,8 @@ sub SSCamSTRM_Define($$) { # Versionsinformationen setzen SSCamSTRM_setVersionInfo($hash); - readingsSingleUpdate($hash,"state", "initialized", 1); # Init für "state" + readingsSingleUpdate($hash,"state", "initialized", 1); # Init für "state" + readingsSingleUpdate($hash,"parentState", "initialized", 1); # Init für "parentState" Forum: https://forum.fhem.de/index.php/topic,45671.msg985136.html#msg985136 return undef; }