Don't clear Diskspace a second time

pull/3630/head
Isaac Connor 2022-11-01 18:42:22 -04:00
parent 6e5b4ff6e1
commit f965249ac6
1 changed files with 1 additions and 1 deletions

View File

@ -375,7 +375,7 @@ sub checkFilter {
if (
( (!defined $old_diskspace) and defined $new_diskspace)
or
( (defined $old_diskspace) and (defined $new_diskspace) and ( $old_diskspace != $Event->DiskSpace(undef) ) )
( (defined $old_diskspace) and (defined $new_diskspace) and ($old_diskspace != $new_diskspace) )
) {
$Event->save();
}