fix getting message count

This commit is contained in:
Kay Marquardt (Gnadelwartz) 2019-04-19 18:35:51 +02:00
parent 8028d2b0eb
commit ba455af9f1
1 changed files with 1 additions and 1 deletions

View File

@ -637,7 +637,7 @@ while [ "$1" = "startbot" ]; do {
UPDATE="$(curl -s "$UPD_URL$OFFSET" | ./JSON.sh/JSON.sh)"
# Offset
OFFSET="$(echo "$UPDATE" | JsonGetValue '"result",[0-9]*,"update_id"')"
OFFSET="$(echo "$UPDATE" | grep '\["result",[0-9]*,"update_id"\]' | tail -1 | cut -f 2)"
OFFSET=$((OFFSET+1))
if [ "$OFFSET" != "1" ]; then