diff --git a/src/tribler/gui/dialogs/startdownloaddialog.py b/src/tribler/gui/dialogs/startdownloaddialog.py index e4b5b54818a..a3b4df852d4 100644 --- a/src/tribler/gui/dialogs/startdownloaddialog.py +++ b/src/tribler/gui/dialogs/startdownloaddialog.py @@ -275,6 +275,12 @@ def on_download_clicked(self, checked): ) else: download_dir = self.dialog_widget.destination_input.currentText() + self.logger.info(f'Download folder: {download_dir}') + if not download_dir: + text = tr("Please specify the path to the download directory") + title = tr("The download directory is empty") + ConfirmationDialog.show_message(self.dialog_widget, title, text, "OK") + return is_writable, error = is_dir_writable(download_dir) if not is_writable: gui_error_message = tr(