From 59af42faa8f56ff67237d764b2db3dbb131599ea Mon Sep 17 00:00:00 2001 From: retrozelda Date: Sat, 8 Feb 2025 22:40:32 -0500 Subject: [PATCH] content auto fetch hooked up --- beacon_snatch/series.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/beacon_snatch/series.py b/beacon_snatch/series.py index dfd2c2e..de95a01 100644 --- a/beacon_snatch/series.py +++ b/beacon_snatch/series.py @@ -95,7 +95,8 @@ class BeaconSeries: new_series.description = description new_series.series_url = url - new_series.fetch(auth) + if auto_fetch: + new_series.fetch(auth) except: logging.warn(f"Unable to create series \"{series_id}\".")