filter out any recordings in the Deleted group
Do not transcode a recording in the Deleted group.
This commit is contained in:
parent
61dc6756d6
commit
f3c0d86d71
@ -434,7 +434,7 @@
|
||||
(map rebuild '(skiplist cutlist))))
|
||||
|
||||
(define* (mythconverg-pending-jobs #:optional (days 7))
|
||||
(let ((basenames (mythconverg-execute+parse (simple-format #f "select basename from recorded where cutlist=1 and lastmodified>=now() - interval ~a day;" days))))
|
||||
(let ((basenames (mythconverg-execute+parse (simple-format #f "select basename from recorded where cutlist=1 and lastmodified>=now() - interval ~a day and not(recgroup = 'Deleted');" days))))
|
||||
(define (parse-basename bn)
|
||||
(read-from-string (string-split (car (string-split (car bn) #\.)) #\_)))
|
||||
(cond ((null? basenames)
|
||||
|
Loading…
x
Reference in New Issue
Block a user