aboutsummaryrefslogtreecommitdiffstats
path: root/gallery_dl/util.py
diff options
context:
space:
mode:
Diffstat (limited to 'gallery_dl/util.py')
-rw-r--r--gallery_dl/util.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/gallery_dl/util.py b/gallery_dl/util.py
index 06a580b..76e6517 100644
--- a/gallery_dl/util.py
+++ b/gallery_dl/util.py
@@ -686,8 +686,10 @@ class CustomNone():
# v128.0 release on 2024-07-09 has ordinal 739076
+# v137.0 release on 2025-04-01 has ordinal 739342
# 735492 == 739076 - 128 * 28
-_ff_ver = (datetime.date.today().toordinal() - 735492) // 28
+# 735506 == 739342 - 137 * 28
+_ff_ver = (datetime.date.today().toordinal() - 735506) // 28
NONE = CustomNone()
EPOCH = datetime.datetime(1970, 1, 1)