diff --git a/scripts/communityScripts/armored-chat/armored_chat.qml b/scripts/communityScripts/armored-chat/armored_chat.qml
index 13506c226a..ede60fca71 100644
--- a/scripts/communityScripts/armored-chat/armored_chat.qml
+++ b/scripts/communityScripts/armored-chat/armored_chat.qml
@@ -510,7 +510,7 @@ Rectangle {
mess = mess.replace(arrow, "<");
var link = /https?:\/\/(www\.)?[-a-zA-Z0-9@:%._\+~#=]{1,256}\.[a-zA-Z0-9()]{1,6}\b([-a-zA-Z0-9()@:%_\+.~#?&//=]*)/g;
- mess = mess.replace(link, (match) => {return "" + match + " ⮺"});
+ mess = mess.replace(link, (match) => {return `` + match + ` ⮺`});
var newline = /\n/gi;
mess = mess.replace(newline, "
");