diff --git a/pleroma-cli.sh b/pleroma-cli.sh
index 760de25b971cef45a8b83ca01c1886ad296c6f2e..9ee7967d8ef1cbf08a688fb3844fdbb38e4ecaf6 100755
--- a/pleroma-cli.sh
+++ b/pleroma-cli.sh
@@ -282,7 +282,7 @@ }
 
 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 @@ 	count=$(echo "$follow_req" | jj \#)
 	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 @@ 		nonexit=1
 		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
