Only save updated DiskSpace if event is finished

This commit is contained in:
Isaac Connor 2021-03-15 15:02:43 -04:00
parent f4e60be444
commit feec631ca5
1 changed files with 8 additions and 4 deletions

View File

@ -196,8 +196,10 @@ if ( empty($_REQUEST['path']) ) {
Output was: '.implode(PHP_EOL,$output) );
}
# Generating an image file will use up more disk space, so update the Event record.
$Event->DiskSpace(null);
$Event->save();
if ( $Event->EndDateTime() ) {
$Event->DiskSpace(null);
$Event->save();
}
} else {
header('HTTP/1.0 404 Not Found');
ZM\Fatal('No snapshot jpg found for event '.$_REQUEST['eid']);
@ -281,8 +283,10 @@ Command was: '.$command.'
Output was: '.implode(PHP_EOL,$output) );
}
# Generating an image file will use up more disk space, so update the Event record.
$Event->DiskSpace(null);
$Event->save();
if ( $Event->EndDateTime() ) {
$Event->DiskSpace(null);
$Event->save();
}
} else {
header('HTTP/1.0 404 Not Found');
ZM\Fatal("Can't create frame $show images from video because there is no video file for this event at ".