From 127fc990eb0c6ff4095b381d6fd31a00caf2c127 Mon Sep 17 00:00:00 2001 From: tcely Date: Sun, 27 Apr 2025 16:23:51 -0400 Subject: [PATCH] Use the length of the new metadata --- tubesync/sync/tasks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tubesync/sync/tasks.py b/tubesync/sync/tasks.py index 50f8ff16..efd03152 100644 --- a/tubesync/sync/tasks.py +++ b/tubesync/sync/tasks.py @@ -514,7 +514,7 @@ def download_media_metadata(media_id): # Don't filter media here, the post_save signal will handle that save_model(media) - log.info(f'Saved {len(media.metadata)} bytes of metadata for: ' + log.info(f'Saved {len(media.metadata_dumps())} bytes of metadata for: ' f'{source} / {media}: {media_id}')