diff --git a/src/mail-route b/src/mail-route index d09c2fe..8a27669 100755 --- a/src/mail-route +++ b/src/mail-route @@ -15,7 +15,7 @@ $bin_name = array_shift($argv); $score = floatval(trim(file_get_contents(array_shift($argv)))); -$message = implode("\n",array_map(fn($o)=>trim(file_get_contents($o)),$argv)); +$message = implode("\n",array_map(fn($o)=>trim(str_replace('"','',file_get_contents($o))),$argv)); $telegram_bot_token = getenv()["TELEGRAM_BOT_TOKEN"] ?? ""; $telegram_chat_id = getenv()["TELEGRAM_CHAT_ID"] ?? "";