Don't turn Media.skip off when starting

This commit is contained in:
tcely 2025-02-14 14:50:40 -05:00 committed by GitHub
parent f083ad65f7
commit ab0cc1c5ee
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -12,7 +12,7 @@ from .overrides.custom_filter import filter_custom
# Check the filter conditions for instance, return is if the Skip property has changed so we can do other things
def filter_media(instance: Media):
# Assume we aren't skipping it, if any of these conditions are true, we skip it
skip = False
skip = instance.skip
# Check if it's published
if not skip and filter_published(instance):