mirror of
https://github.com/iv-org/youtube-utils.git
synced 2025-08-11 08:10:13 -04:00
Fix typo in variable name: s/toekn/token/
This commit is contained in:
parent
2e11ec2e4a
commit
fce9410328
1 changed files with 2 additions and 2 deletions
|
@ -271,7 +271,7 @@ case $endpoint_option in
|
||||||
printf "Enter continuation token []: "
|
printf "Enter continuation token []: "
|
||||||
read token
|
read token
|
||||||
|
|
||||||
if [ -z $toekn ]; then echo "Error: token required"; return 1; fi
|
if [ -z $token ]; then echo "Error: token required"; return 1; fi
|
||||||
partial_data="\"continuation\":\"${token}\""
|
partial_data="\"continuation\":\"${token}\""
|
||||||
fi
|
fi
|
||||||
;;
|
;;
|
||||||
|
@ -295,7 +295,7 @@ case $endpoint_option in
|
||||||
printf "Enter continuation token []: "
|
printf "Enter continuation token []: "
|
||||||
read token
|
read token
|
||||||
|
|
||||||
if [ -z $toekn ]; then echo "Error: token required"; return 1; fi
|
if [ -z $token ]; then echo "Error: token required"; return 1; fi
|
||||||
partial_data="\"continuation\":\"${token}\""
|
partial_data="\"continuation\":\"${token}\""
|
||||||
fi
|
fi
|
||||||
;;
|
;;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue