AppStore: simplify

This commit is contained in:
Thomas Farstrike
2025-12-19 16:01:20 +01:00
parent 3915522bde
commit b81be096b7
2 changed files with 2 additions and 4 deletions
@@ -233,9 +233,7 @@ class AppStore(Activity):
print(f"Could not get app_metadata object from version object: {e}")
return
try:
author = app_metadata.get("author")
print("Using author as publisher because that's all the backend supports...")
app_obj.publisher = author
app_obj.publisher = app_metadata.get("author")
except Exception as e:
print(f"Could not get author from version object: {e}")
try: