2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-02-26 10:34:52 +00:00

49_SSCamSTRM: minor internal code change

git-svn-id: https://svn.fhem.de/fhem/trunk@20478 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
nasseeder1 2019-11-08 20:53:30 +00:00
parent 0cb26902cd
commit c6a5904e28
2 changed files with 5 additions and 0 deletions

View File

@ -1,5 +1,6 @@
# Add changes at the top of the list. Keep it in ASCII, and 80-char wide. # 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. # Do not insert empty lines here, update check depends on it.
- change: 49_SSCamSTRM: minor internal code change
- feature: 73_AutoShuttersControl: add event RegEx true false to WinRec Fn - feature: 73_AutoShuttersControl: add event RegEx true false to WinRec Fn
- feature: 49_SSCam: add possible usage of several cache types, e.g. file- - feature: 49_SSCam: add possible usage of several cache types, e.g. file-
memory- and Redis-Cache, to store images/recordings for memory- and Redis-Cache, to store images/recordings for

View File

@ -35,6 +35,7 @@ eval "use FHEM::Meta;1" or my $modMetaAbsent = 1;
# Versions History intern # Versions History intern
our %SSCamSTRM_vNotesIntern = ( our %SSCamSTRM_vNotesIntern = (
"2.10.2" => "08.11.2019 undef \$link in SSCamSTRM_FwFn / SSCamSTRM_AsHtml to save memory ",
"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.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.10.0" => "21.09.2019 new attribute hideAudio ",
"2.9.0" => "19.09.2019 new attribute noLink ", "2.9.0" => "19.09.2019 new attribute noLink ",
@ -299,6 +300,8 @@ sub SSCamSTRM_FwFn($;$$$) {
InternalTimer(gettimeofday()+$al, "SSCamSTRM_refresh", $hash, 0); InternalTimer(gettimeofday()+$al, "SSCamSTRM_refresh", $hash, 0);
Log3($d, 5, "$d - next start of autoRefresh: ".FmtDateTime(gettimeofday()+$al)); Log3($d, 5, "$d - next start of autoRefresh: ".FmtDateTime(gettimeofday()+$al));
} }
undef $link;
return $ret; return $ret;
} }
@ -387,6 +390,7 @@ sub SSCamSTRM_AsHtml($;$) {
} }
$ret .= "</html>"; $ret .= "</html>";
undef $link;
return $ret; return $ret;
} }