forked from j62/ctbrec
1
0
Fork 0

Don't stop a recording when setting the "stop at" date

This commit is contained in:
0xb00bface 2020-08-19 18:36:50 +02:00
parent fa3e5fbcaf
commit 6c0fe83816
1 changed files with 0 additions and 5 deletions

View File

@ -695,11 +695,6 @@ public class NextGenLocalRecorder implements Recorder {
} else { } else {
throw new NoSuchElementException("Model " + model.getName() + " [" + model.getUrl() + "] not found in list of recorded models"); throw new NoSuchElementException("Model " + model.getName() + " [" + model.getUrl() + "] not found in list of recorded models");
} }
if (recordingProcesses.containsKey(model)) {
Recording rec = recordingProcesses.get(model);
rec.getDownload().stop();
}
} finally { } finally {
recorderLock.unlock(); recorderLock.unlock();
} }