mirror of
https://gitea.invidious.io/iv-org/youtube-utils.git
synced 2024-08-15 00:53:16 +00: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…
Reference in a new issue