We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 97aecbf commit 32164c4Copy full SHA for 32164c4
1 file changed
modules/api.py
@@ -1553,7 +1553,7 @@ async def _copy_ddl_link(session_id: str, file: DdlFile):
1553
async_thread.run(_copy_ddl_link(results["session"], ddl_file))
1554
globals.gui.draw_hover_text(f"Copy download link to clipboard", text=None)
1555
imgui.same_line()
1556
- if already_downloading := ddl_file.filename in downloads:
+ if already_downloading := f"{game.id}/{ddl_file.filename}" in downloads:
1557
imgui.push_disabled()
1558
if imgui.button(icons.download_multiple):
1559
async def _download_ddl_link(session_id: str, file: DdlFile):
0 commit comments