From 65e6d9a19718af39b714f1ebfc569f0692849591 Mon Sep 17 00:00:00 2001 From: Flawed <33593723+ff14wed@users.noreply.github.com> Date: Wed, 11 Mar 2026 01:30:39 -0700 Subject: [PATCH] Hack to support hotfixes for now Will make this check more robust later --- automation/ffxiv_info.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/automation/ffxiv_info.py b/automation/ffxiv_info.py index d42c633..39e169c 100644 --- a/automation/ffxiv_info.py +++ b/automation/ffxiv_info.py @@ -131,8 +131,8 @@ def extract_patch_version(html): if not html or not (m := re.search(r"patch\s+(\d+\.\d+)", html, re.I)): return None v = m.group(1) - return v + "0" if len(v.split(".")[1]) == 1 else v - + v = v + "0" if len(v.split(".")[1]) == 1 else v + return v + "h" if "HotFixes" in html else v def is_maintenance_post(title): """Returns True if the title represents a primary world maintenance post."""