Skip to content

Commit

Permalink
Fix appending server-only release to releases table
Browse files Browse the repository at this point in the history
  • Loading branch information
martinburchell committed Aug 14, 2024
1 parent 0df78fb commit 2a82a77
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion tools/release_new_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -843,7 +843,12 @@ def get_android_releases(self) -> List[Dict[str, Any]]:
try:
version = Version(row["AndroidManifest.xml name"])
except ValueError:
version = ""
try:
version = Version(
row["Google Play Store release name"]
)
except ValueError:
version = ""

m = re.match(
self.android_version_codes_table_search,
Expand Down

0 comments on commit 2a82a77

Please sign in to comment.