Consider empty recordings as too short
This commit is contained in:
parent
45df31eb15
commit
196b82dfa3
|
@ -776,7 +776,7 @@ public class LocalRecorder implements Recorder {
|
|||
try {
|
||||
LOG.debug("Determining video length for {}", download.getTarget());
|
||||
File target = download.getTarget();
|
||||
if(!target.exists()) {
|
||||
if(!target.exists() || target.length() == 0) {
|
||||
return true;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue