fix default value in ReadingsAge Fn

This commit is contained in:
Marko Oldenburg 2020-10-15 14:09:37 +02:00
parent a5084429b0
commit d9bb3c4729
2 changed files with 2 additions and 2 deletions

View File

@ -1,2 +1,2 @@
UPD 2020-06-19_08:32:08 6090 FHEM/98_backupToStorage.pm
UPD 2020-10-15_14:03:56 15727 lib/FHEM/backupToStorage.pm
UPD 2020-10-15_14:09:08 15726 lib/FHEM/backupToStorage.pm

View File

@ -323,7 +323,7 @@ sub PushToStorage {
Log3( $name, 4, "backupToStorage ($name) - push to storage function" );
return
if ( ReadingsAge($name,'fhemBackupFile',60) > 5 );
if ( ReadingsAge($name,'fhemBackupFile',1) > 5 );
require "SubProcess.pm";