We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent af59635 commit 65ac255Copy full SHA for 65ac255
xapps2/main.py
@@ -34,7 +34,7 @@ async def main():
34
35
sem = asyncio.Semaphore(6)
36
37
- for addon in set(apps_conf["addons"]):
+ for addon in apps_conf["addons"]:
38
if func := getattr(apk_dl, addon, None):
39
file_ext = ".zip" if "nikgapps" in addon else ".apk"
40
tasks.append(
@@ -45,7 +45,7 @@ async def main():
45
)
46
47
48
- for app in set(apps_conf["custom"]):
+ for app in apps_conf["custom"]:
49
apk_name = resolve_name(app["app"])
50
source = app["source"]
51
if source in ("fdroid", "playstore"):
0 commit comments