Fix manual scan not removing deleted videos

This commit is contained in:
Zoe Roux 2024-05-03 00:45:40 +02:00
parent 9d00aa6d2f
commit bc75576e4b
No known key found for this signature in database

View File

@ -50,7 +50,7 @@ class Subscriber(Publisher):
case Refresh(kind, id):
ack = await matcher.refresh(kind, id)
case Rescan():
await scan(None, self, matcher._client)
await scan(None, self, matcher._client, remove_deleted=True)
ack = True
case _:
logger.error(f"Invalid action: {msg.action}")