2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-03-09 20:57:11 +00:00

49_IPCAM: not sending events for sequential snapshots fixed

git-svn-id: https://svn.fhem.de/fhem/trunk@23935 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
delmar 2021-03-12 18:14:12 +00:00
parent 40edaad46d
commit 811cc258e8
2 changed files with 2 additions and 2 deletions

View File

@ -1,5 +1,6 @@
# 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.
- bugfix: 49_IPCAM: not sending events for sequential snapshots fixed
- new: SYSSTAT: umstellung auf non-blocking
frei konfigurierbare zusatz readings
mehr siehe: https://forum.fhem.de/index.php?topic=42771

View File

@ -566,8 +566,7 @@ sub RequestSnapshot_Callback {
Log3 $name, 4, "IPCAM ($name) - snapshot $storage/$imageFile written.";
readingsBulkUpdate($hash, "last", $lastSnapshot, 1);
$hash->{STATE} = "last: $dateTime";
$hash->{READINGS}{"snapshot$seqF"}{TIME} = $dateTime;
$hash->{READINGS}{"snapshot$seqF"}{VAL} = $imageFile;
readingsBulkUpdate($hash, "snapshot$seqF", $imageFile, 1);
Log3 $name, 4, "IPCAM ($name) - image: $imageFile";
}