mirror of
https://github.com/ManiMatter/decluttarr.git
synced 2026-04-20 04:54:17 +02:00
Added protocol to delay profiles check
This commit is contained in:
@@ -25,7 +25,7 @@ def filterOutDelayedQueueItems(queue):
|
||||
# Use get() method with default value "No indexer" if 'indexer' key does not exist
|
||||
indexer = record.get('indexer', 'No indexer')
|
||||
protocol = record.get('protocol', 'No protocol')
|
||||
combination = (record['title'], indexer)
|
||||
combination = (record['title'], protocol, indexer)
|
||||
if record['status'] == 'delay':
|
||||
if combination not in seen_combinations:
|
||||
seen_combinations.add(combination)
|
||||
|
||||
Reference in New Issue
Block a user