mirror of
https://github.com/iv-org/invidious.git
synced 2025-08-17 18:18:30 +00:00
Fix typo in variable name: s/toekn/token/
This commit is contained in:
parent
3c0dbfa598
commit
b75f41026e
@ -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 New Issue
Block a user