1
0
Fork 1
mirror of https://github.com/zen-browser/desktop.git synced 2025-07-07 14:55:30 +02:00

chore: Updated to firefox 138.0.3, b=(no-bug), c=scripts, common

This commit is contained in:
Mr. M 2025-05-13 15:58:39 +02:00
parent 7c12ad72b8
commit 641d4d0f87
No known key found for this signature in database
GPG key ID: 6292C4C8F8652B18
5 changed files with 10 additions and 14 deletions

View file

@ -38,7 +38,7 @@ def get_rc_response() -> Optional[str]:
for tag_dict in data["tags"]:
tag = tag_dict["tag"]
if (tag.startswith("FIREFOX") and tag.endswith("_BUILD1")
and "ESR" not in tag and "b" not in tag):
and "ESR" not in tag and "b" not in tag and "ANDROID" not in tag):
return (tag.replace("FIREFOX_", "").replace("_BUILD1",
"").replace("_", "."))
except (FileNotFoundError, json.JSONDecodeError) as e: