2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-02-07 23:09:26 +00:00

98_DOIF.pm: card: write data in readings at SAVE-event

git-svn-id: https://svn.fhem.de/fhem/trunk@24479 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
Damian 2021-05-20 14:47:08 +00:00
parent 3fd7e30b18
commit 0e334ce951

View File

@ -3868,6 +3868,11 @@ DOIF_Shutdown
{
my ($hash) = @_;
DOIF_killBlocking($hash);
if (defined $hash->{collect}) {
foreach my $dev_reading (keys %{$hash->{collect}}) {
DOIF_collect_save_values($hash,$dev_reading);
}
}
return undef;
}