updated library and added sentmsgs to viewer

This commit is contained in:
celso 2023-03-22 08:19:55 -03:00
parent b5d8ef69f4
commit 41d6bf52f8
2 changed files with 9 additions and 4 deletions

@ -1 +1 @@
Subproject commit 660433de36041a28bb9e553c264d257a50c6d0f6
Subproject commit 4d0ef5998b58c2a7415dbfce1a3320e79b825d8c

11
bot.sh
View File

@ -21,9 +21,14 @@ exec 2>"${bot_tmpdir}/error.log"
while [ "${1}" == "start" ]; do
grep "\S" <<< $(getupd) >/dev/null || continue
declare -A curmsg
# =( [msg_id]="$(getmsg_id)" [user_id]="$(getusr_id)" [chat_id]="$(getchat_id)" [text]="$(gettext)" )
getmsg_content curmsg
getmsg_content curmsg updates.txt
view_content curmsg
[ "${curmsg[text]}" == "/start" ] && sendmsg "${curmsg[chat_id]}" $(./getip.sh "${bot_tmpdir}")
[ "${curmsg[text]}" == "/start" ] && {
sendmsg "${curmsg[chat_id]}" $(./getip.sh "${bot_tmpdir}")
unset curmsg
declare -A curmsg
getmsg_content curmsg sentmsgs.txt
tput setaf 3; view_content curmsg; tput sgr0
}
unset curmsg
done