diff --git a/pleroma-cli.sh b/pleroma-cli.sh
index 4c9368630c1498d2158a042c9d4adf30893fc9d6..372febeafd30a9b04ebaad556eb29fdbfd47a3d4 100755
--- a/pleroma-cli.sh
+++ b/pleroma-cli.sh
@@ -662,9 +662,9 @@ 	if [ "$quoting_reply" = 'true' ]; then
 		echo "$reply_status" | jj -r content | html_to_txt_render | delqse | sed 's/^/> /' > tmp_status.md
 	fi 
 	if [ "$copy_mentions" = 'true' ]; then
-		mentions_reply=$(echo "$reply_status" | jj -l 'mentions.#.acct' | delq | legacy_addr_preprocess)
+		mentions_reply=$(echo "$reply_status" | jj -l 'mentions.#.acct' | delq)
 		mentions_reply="$mentions_reply\n"
-		acct_selfstatus=$(echo "$reply_status" | jj account.acct | legacy_addr_preprocess)
+		acct_selfstatus=$(echo "$reply_status" | jj account.acct)
 		mentions_reply=$(echo "$mentions_reply""$acct_selfstatus" | sort -u | tr '\n' ',' | sed -e 's/,$//g; s/^,//g')
 	fi
 	write_status_menu "$(echo "$reply_status" | jj id)" 
@@ -814,7 +814,7 @@ 			echo 'Input path to attach (ex. @image.png or @/full/path/to/attach.png)'
 			read mediaattach
 			;;
 			"Add recipient") 
-			echo 'Input addr (ex. nick@domain.domain,etc@domain.domain)'
+			echo 'Input addr (ex. nick,nick_etc@domain.domain)'
 			read mentions_reply ;;
 			"Change type") content_type=$(echo 'text/plain\ntext/markdown\ntext/html' | fzy) ;;
 			"Visiblity")
