2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-03-10 09:16:53 +00:00

72_TA_CMI_JSON: removing internal timers upon Undef.

git-svn-id: https://svn.fhem.de/fhem/trunk@17662 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
delmar 2018-11-02 14:40:28 +00:00
parent ac6232b304
commit a23e735894
2 changed files with 3 additions and 1 deletions

View File

@ -706,7 +706,8 @@ sub ZoneMinder_Ready {
<br><br>
<ul>
<li><code>publicAddress &lt;address&gt;</code><br>This configures public accessibility of your LAN (eg your ddns address). Define a valid URL here, eg <code>https://my.own.domain:2344</code></li>
<li><code>webConsoleContext &lt;path&gt;</code><br>If not set, this defaults to <code>/zm</code>. This is used for building the URL to the ZoneMinder web console.</li>
<li><code>webConsoleContext &lt;path&gt;</code><br>If not set, this defaults to <code>/zm</code>. This is used for building the URL to the ZoneMinder web console.</li>
<li><code>usePublicUrlForZmWeb</code><br>If a public address is defined, this setting will use the public address for connecting to ZoneMinder API, instead of trying to use the IP-address.</li>
</ul>
<br><br>

View File

@ -106,6 +106,7 @@ sub TA_CMI_JSON_Undef($$) {
my $name = $hash->{NAME};
HttpUtils_Close($hash);
RemoveInternalTimer($hash);
return undef;
}