From c54d9f82c7cb5c39aa37558b109935b17c101214 Mon Sep 17 00:00:00 2001 From: Miguel Jacq Date: Sat, 8 Feb 2025 16:09:56 +1100 Subject: [PATCH] Allow logging even if autostop is enabled --- cli/onionshare_cli/__init__.py | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/cli/onionshare_cli/__init__.py b/cli/onionshare_cli/__init__.py index 8824a0c3..0efbaa65 100644 --- a/cli/onionshare_cli/__init__.py +++ b/cli/onionshare_cli/__init__.py @@ -124,7 +124,7 @@ def main(cwd=None): action="store_true", dest="log_filenames", default=False, - help="Share files: Log individual names of shared files as they are downloaded (requires autostop sharing to be disabled)" + help="Log file download activity to stdout" ) parser.add_argument( "--qr", @@ -308,10 +308,6 @@ def main(cwd=None): if persistent_filename: mode_settings.set(mode, "filenames", filenames) - if autostop_sharing and log_filenames: - print("Autostop sharing is enabled, thus individual files cannot be downloaded (or logged). Set both --no-autostop-sharing and --log-filenames for intended functionality.") - sys.exit() - # In receive mode, you must allows either text, files, or both if mode == "receive" and disable_text and disable_files: print("You cannot disable both text and files")