Skip to content

Commit

Permalink
push: ignore Roboto_old family
Browse files Browse the repository at this point in the history
  • Loading branch information
m4rc1e committed Aug 1, 2024
1 parent cba6fd5 commit 517b04d
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions Lib/gftools/push/servers.py
Original file line number Diff line number Diff line change
Expand Up @@ -155,6 +155,9 @@ def update_all(self, last_checked: str):
families_data = meta["familyMetadataList"]
for family_data in families_data:
family_name = family_data["family"]
# I beleive this is a test family so we'll skip it for now
if family_name == "Roboto_old":
continue
last_modified = family_data["lastModified"]

cached_family_version = self.family_versions.get(family_name)
Expand Down

0 comments on commit 517b04d

Please sign in to comment.