mirror of
https://github.com/octoleo/telegram-bot-bash.git
synced 2025-01-15 02:13:44 +00:00
Fixed typo, fixed download file name, fixed sending of gifs trhu inline queries.
This commit is contained in:
parent
78a57d9d9c
commit
9b64c3fae6
@ -9,7 +9,6 @@
|
|||||||
# and on tmux (http://github.com/tmux/tmux) (BSD).
|
# and on tmux (http://github.com/tmux/tmux) (BSD).
|
||||||
# This file is public domain in the USA and all free countries.
|
# This file is public domain in the USA and all free countries.
|
||||||
# Elsewhere, consider it to be WTFPLv2. (wtfpl.net/txt/copying)
|
# Elsewhere, consider it to be WTFPLv2. (wtfpl.net/txt/copying)
|
||||||
INLINE=0
|
|
||||||
|
|
||||||
if [ ! -f "JSON.sh/JSON.sh" ]; then
|
if [ ! -f "JSON.sh/JSON.sh" ]; then
|
||||||
echo "You did not clone recursively! Downloading JSON.sh..."
|
echo "You did not clone recursively! Downloading JSON.sh..."
|
||||||
@ -116,7 +115,7 @@ answer_inline_query() {
|
|||||||
InlineQueryResult='[{"type":"'$2'","id":"$RANDOM","photo_url":"'$3'","thumb_url":"'$4'"}]'
|
InlineQueryResult='[{"type":"'$2'","id":"$RANDOM","photo_url":"'$3'","thumb_url":"'$4'"}]'
|
||||||
;;
|
;;
|
||||||
"gif")
|
"gif")
|
||||||
InlineQueryResult='[{"type":"'$2'","id":"$RANDOM","gif_url":"'$3'"}]'
|
InlineQueryResult='[{"type":"'$2'","id":"$RANDOM","gif_url":"'$3'", "thumb_url":"'$4'"}]'
|
||||||
;;
|
;;
|
||||||
"mpeg4_gif")
|
"mpeg4_gif")
|
||||||
InlineQueryResult='[{"type":"'$2'","id":"$RANDOM","mpeg4_url":"'$3'"}]'
|
InlineQueryResult='[{"type":"'$2'","id":"$RANDOM","mpeg4_url":"'$3'"}]'
|
||||||
@ -311,7 +310,7 @@ process_client() {
|
|||||||
# Location
|
# Location
|
||||||
LOCATION[LONGITUDE]=$(echo "$res" | egrep '\["result",0,"message","location","longitude"\]' | cut -f 2 | cut -d '"' -f 2)
|
LOCATION[LONGITUDE]=$(echo "$res" | egrep '\["result",0,"message","location","longitude"\]' | cut -f 2 | cut -d '"' -f 2)
|
||||||
LOCATION[LATITUDE]=$(echo "$res" | egrep '\["result",0,"message","location","latitude"\]' | cut -f 2 | cut -d '"' -f 2)
|
LOCATION[LATITUDE]=$(echo "$res" | egrep '\["result",0,"message","location","latitude"\]' | cut -f 2 | cut -d '"' -f 2)
|
||||||
NAME="$(basename ${URLS[*]} &>/dev/null)"
|
NAME="$(echo ${URLS[*]} | sed 's/.*\///g')"
|
||||||
|
|
||||||
# Tmux
|
# Tmux
|
||||||
copname="$ME"_"${USER[ID]}"
|
copname="$ME"_"${USER[ID]}"
|
||||||
|
Loading…
Reference in New Issue
Block a user