From 556012d99533687d5ec638dc737e53ca34d556e1 Mon Sep 17 00:00:00 2001 From: zakary Date: Mon, 22 Jul 2024 07:31:39 -0500 Subject: [PATCH] fix(logic): missing downloadid error --- xseed.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xseed.sh b/xseed.sh index 8df8672..fd088ec 100644 --- a/xseed.sh +++ b/xseed.sh @@ -128,7 +128,7 @@ validate_process() { exit 1 fi - if [ -z "$downloadID" ] && [[ -z "$filePath" || -z "$folderPath" ]]; then + if [ -z "$downloadID" ]; then log_message "ERROR" "Download ID is missing. Checking if file path works for data/path based cross-seeding." if [[ -z "$filePath" && -z "$folderPath" ]]; then log_message "ERROR" "File and Folder paths are missing. Exiting."