mirror of
https://github.com/YunoHost/yunorunner.git
synced 2024-09-03 20:05:52 +02:00
[fix] bad comparison duplicated apps in app list
This commit is contained in:
parent
1eb0374a11
commit
bb99d52865
1 changed files with 1 additions and 1 deletions
2
run.py
2
run.py
|
@ -679,7 +679,7 @@ async def ws_apps(request, websocket):
|
||||||
]
|
]
|
||||||
|
|
||||||
# add apps without jobs
|
# add apps without jobs
|
||||||
selected_repos = {x["name"] for x in repos}
|
selected_repos = {x["id"] for x in repos}
|
||||||
for repo in Repo.select():
|
for repo in Repo.select():
|
||||||
if repo.id in selected_repos:
|
if repo.id in selected_repos:
|
||||||
continue
|
continue
|
||||||
|
|
Loading…
Add table
Reference in a new issue