Fix badge store app installation when custom apps are present
Fixes #85. See also #57, though doesn’t fix ‘update all apps’ functionality.sammachin-gprs
parent
6fb00ff971
commit
49125fc3d2
|
@ -59,7 +59,7 @@ def show_app(a):
|
|||
|
||||
if install:
|
||||
with WaitingMessage(title="Installing %s" % a, text="Please wait...") as message:
|
||||
installers = store.install(_get_current_apps() + [a])
|
||||
installers = store.install([a])
|
||||
n = len(installers)
|
||||
for i, installer in enumerate(installers):
|
||||
message.text = "%s (%s/%s)" % (installer.path, i + 1, n)
|
||||
|
|
Loading…
Reference in New Issue