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
+1 -1
View File
@@ -2,7 +2,7 @@
=====
- AudioFlinger: optimize WAV volume scaling for speed and immediately set volume
- AudioFlinger: add support for I2S microphone recording to WAV
- AppStore app: eliminate all thread by using TaskManager
- AppStore app: eliminate all threads by using TaskManager
- AppStore app: add support for BadgeHub backend
- OSUpdate app: show download speed
- WiFi app: new "Add network" functionality for out-of-range or hidden networks
@@ -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: