Skip to content

Commit d03c8de

Browse files
committed
fix missing argument on download thread
1 parent 7753c09 commit d03c8de

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

app.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -354,7 +354,8 @@ def download_finished(self, conn, c):
354354
self.messages.add_message(f"Starting download of URL: {url}")
355355

356356
# Create and start a download thread for the URL
357-
self.download_thread = DownloadThread(url_id, url)
357+
self.download_thread = DownloadThread(
358+
url_id, url, self.gallerydl_bin)
358359
self.download_thread.output.connect(self.append_output)
359360
self.download_thread.finished.connect(
360361
lambda: self.download_finished(conn, c))

0 commit comments

Comments
 (0)