From 8c271c9fe5a864b196670788381e3c9953b22d0d Mon Sep 17 00:00:00 2001 From: Stefan <53957363+Stefan080106@users.noreply.github.com> Date: Sat, 26 Jul 2025 10:22:40 +0200 Subject: [PATCH] Fix Maps link query formatting --- src/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.js b/src/index.js index 4e65e66..bbe2882 100644 --- a/src/index.js +++ b/src/index.js @@ -182,7 +182,7 @@ async function main(data) { sendMessage( `[INFO]: Einsatz\nStichwort: ${data.title}\nMeldung: ${data.text}\nAdresse: ${ data.address - }\nhttps://www.google.com/maps/search/${data.address.replace(" ", "+")}`, + }\nhttps://www.google.com/maps/search/${data.address.replaceAll(" ", "+")}`, messageIDs ); }