Skip to content

Commit b81be09

Browse files
AppStore: simplify
1 parent 3915522 commit b81be09

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
=====
33
- AudioFlinger: optimize WAV volume scaling for speed and immediately set volume
44
- AudioFlinger: add support for I2S microphone recording to WAV
5-
- AppStore app: eliminate all thread by using TaskManager
5+
- AppStore app: eliminate all threads by using TaskManager
66
- AppStore app: add support for BadgeHub backend
77
- OSUpdate app: show download speed
88
- WiFi app: new "Add network" functionality for out-of-range or hidden networks

internal_filesystem/builtin/apps/com.micropythonos.appstore/assets/appstore.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -233,9 +233,7 @@ async def fetch_badgehub_app_details(self, app_obj):
233233
print(f"Could not get app_metadata object from version object: {e}")
234234
return
235235
try:
236-
author = app_metadata.get("author")
237-
print("Using author as publisher because that's all the backend supports...")
238-
app_obj.publisher = author
236+
app_obj.publisher = app_metadata.get("author")
239237
except Exception as e:
240238
print(f"Could not get author from version object: {e}")
241239
try:

0 commit comments

Comments
 (0)