diff --git a/tubesync/sync/models.py b/tubesync/sync/models.py index 67453f03..10fbbdbd 100644 --- a/tubesync/sync/models.py +++ b/tubesync/sync/models.py @@ -1154,7 +1154,7 @@ class Media(models.Model): data = json.loads(self.metadata or "") compact_json = json.dumps(data, separators=(',', ':'), default=json_serial) - filtered_data = filter_response(data) + filtered_data = filter_response(data, True) filtered_json = json.dumps(filtered_data, separators=(',', ':'), default=json_serial) except Exception as e: log.exception('reduce_data: %s', e)