mirror of
https://github.com/fhem/fhem-mirror.git
synced 2025-01-31 06:39:11 +00:00
57_Calendar: fix count for series with exceptions
git-svn-id: https://svn.fhem.de/fhem/trunk@16694 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
parent
62951dde4f
commit
5d77585607
@ -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: 57_Calendar: fix count for series with exceptions
|
||||
- bugfix: 72_FB_CALLMONITOR: fix control code entries in phonebook and
|
||||
reverse search text file
|
||||
- feature: 49_SSCam: V4.1.0, support Audiostream cams, minor internal changes
|
||||
|
@ -1460,7 +1460,7 @@ sub addOrSkipSeriesEvent($$$$$$) {
|
||||
#return 0 if($self->addEventLimited($t0, $event) > 0);
|
||||
}
|
||||
|
||||
my $occurances= scalar(@{$self->{events}});
|
||||
my $occurances= scalar(@{$self->{events}})+scalar(@{$self->{skippedEvents}});
|
||||
#main::Debug("$occurances occurances so far");
|
||||
return($occurances< $count);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user