about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rwxr-xr-xhm/soispha/pkgs/scripts/specific/ytcc/yts4
1 files changed, 2 insertions, 2 deletions
diff --git a/hm/soispha/pkgs/scripts/specific/ytcc/yts b/hm/soispha/pkgs/scripts/specific/ytcc/yts
index b5edf52c..b81915c1 100755
--- a/hm/soispha/pkgs/scripts/specific/ytcc/yts
+++ b/hm/soispha/pkgs/scripts/specific/ytcc/yts
@@ -52,7 +52,7 @@ while read -r line; do
             if [ "$is_first" = "true" ]; then
                 ids="$id";
             else
-                ids="$ids,$id";
+                ids="$ids $id";
             fi
             dbg "Added to be watched: $id"
             is_first=false
@@ -60,6 +60,6 @@ while read -r line; do
     esac
 done < "$selection_file"
 
-[ "$ids" != "" ] && ytc "$ids";
+[ "$ids" != "" ] && ytc "id" "$ids";
 
 # vim: ft=sh