From d546628d8a30580a9d5b270067fadfccf1ff7c66 Mon Sep 17 00:00:00 2001 From: yuriy Date: Tue, 16 Jan 2024 05:43:42 -0500 Subject: [PATCH] fixed tags input for lbry --- Modules/LBRY-Upload.ahk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Modules/LBRY-Upload.ahk b/Modules/LBRY-Upload.ahk index e41d6ee..85e1537 100644 --- a/Modules/LBRY-Upload.ahk +++ b/Modules/LBRY-Upload.ahk @@ -91,7 +91,7 @@ if(LBRYURLSlug = "" OR LBRYURLSlug = "_Audio"){ ; loops through array and creates a string of: --tags="tag1" --tags="tag2" --tags="tag3" so that it can be passed to lbrynet Loop % KeywordsArray.Length(){ - LBRYTags .= "--tags=" . SingleQuotationmark KeywordsArray[A_Index] . SingleQuotationmark . " " + LBRYTags .= "--tags=" . SingleQuotationmark VideoTagsArray[A_Index] . SingleQuotationmark . " " } ; Msgbox % "FilePathForLBRYAPI: " FilePathForLBRYAPI