fix type request; Show statuses in menu follow requests

This commit is contained in:
localhost_frssoft 2022-04-22 09:11:32 +03:00
parent 755fdc0df9
commit c40b6aa97a
1 changed files with 4 additions and 3 deletions

View File

@ -282,12 +282,12 @@ following_requests()
accept_follow_request()
{
default_curl_opt "$instance_point/follow_requests/$1/authorize"
post_request "$instance_point/follow_requests/$1/authorize"
}
reject_follow_requests()
{
default_curl_opt "$instance_point/follow_requests/$1/reject"
post_request "$instance_point/follow_requests/$1/reject"
}
menu_follow_requests()
@ -308,10 +308,11 @@ menu_follow_requests()
echo "Account creation date: $(date -d "$datecreate" "$format_time")"
echo "Bot: $acct_bot"
echo "Note:\n $note"
choice=$(echo 'Accept\nReject\nNothing' | fzy)
choice=$(echo 'Accept\nReject\nShow statuses\nNothing' | fzy)
case "$choice" in
"Accept") accept_follow_request "$i" ;;
"Reject") reject_follow_request "$i" ;;
"Show statuses") statuses_view_menu "$whoacct" ;;
"Nothing") echo ;;
esac
clear