diff --git a/pleroma-cli.sh b/pleroma-cli.sh index 760de25..9ee7967 100755 --- a/pleroma-cli.sh +++ b/pleroma-cli.sh @@ -282,7 +282,7 @@ following_requests() accept_follow_request() { - post_request "$instance_point/follow_requests/$1/authorize" + post_request "$instance_point/follow_requests/$1/authorize" } reject_follow_request() @@ -297,12 +297,12 @@ menu_follow_requests() ids=$(echo "$follow_req" | jj -l \#.id | delq) clear echo "Follow requests: $count" - for i in $ids; do - whoacct=$(echo "$follow_req" | jj "#[id=$i].acct") - datecreate=$(echo "$follow_req" | jj "#[id=$i].created_at") - acct_display=$(echo "$follow_req" | jj "#[id=$i].display_name") - acct_bot=$(echo "$follow_req" | jj "#[id=$i].bot") - note=$(echo "$follow_req" | jj "#[id=$i].note" | html_to_txt_render) + for id in $ids; do + whoacct=$(echo "$follow_req" | jj "#[id=$id].acct") + datecreate=$(echo "$follow_req" | jj "#[id=$id].created_at") + acct_display=$(echo "$follow_req" | jj "#[id=$id].display_name") + acct_bot=$(echo "$follow_req" | jj "#[id=$id].bot") + note=$(echo "$follow_req" | jj "#[id=$id].note" | html_to_txt_render) echo "$acct_display $whoacct" echo "Account creation date: $(date -d "$datecreate" "$format_time")" @@ -312,8 +312,8 @@ menu_follow_requests() while [ "$nonexit" -eq 1 ]; do choice=$(echo 'Accept\nReject\nShow statuses\nNothing' | fzy) case "$choice" in - "Accept") accept_follow_request "$i" && nonexit=0 ;; - "Reject") reject_follow_request "$i" && nonexit=0 ;; + "Accept") accept_follow_request "$id" && nonexit=0 ;; + "Reject") reject_follow_request "$id" && nonexit=0 ;; "Show statuses") statuses_view_menu "$whoacct" ;; "Nothing") nonexit=0 ;; esac