2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-05-03 19:49:02 +00:00

BUFIX: main::readingsBulkUpdateIfChanged called by ./FHEM/70_NEUTRINO.pm (1191)

git-svn-id: https://svn.fhem.de/fhem/trunk@18461 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
michael.winkler 2019-01-30 20:33:35 +00:00
parent 405f8d2778
commit bc411a4917

View File

@ -1,6 +1,9 @@
# $Id$ # $Id$
############################################################################ ############################################################################
# 2017-09-11, v1.0.12 # 2019-01-20, v1.0.13
#
# v1.0.13
# - BUFIX: main::readingsBulkUpdateIfChanged called by ./FHEM/70_NEUTRINO.pm (1191)
# #
# v1.0.12 # v1.0.12
# - BUFIX: $_ ersetzt durch $uResult # - BUFIX: $_ ersetzt durch $uResult
@ -1185,11 +1188,12 @@ sub NEUTRINO_ReceiveCommand($$$) {
} }
# find running record # find running record
if ($neutrinotime > $timerstartTime && $neutrinotime < $timerstopTime) { if ($timername ne "") {
readingsBulkUpdateIfChanged( $hash, "recordchannel", $timername ); if ($neutrinotime > $timerstartTime && $neutrinotime < $timerstopTime) {
NEUTRINO_SendCommand( $hash, "epginforecord",""); readingsBulkUpdateIfChanged( $hash, "recordchannel", $timername );
NEUTRINO_SendCommand( $hash, "epginforecord","");
}
} }
$i++; $i++;
} }
} }