Telegram Notifications not sent when other platforms do

Hello,

My sentinel is linked with my relayer and autotask, when triggered, it sends notifications to my discord channel via my discord bot and email but doesn’t send to my telegram bot.

My telegram configuration is correct as I received the test notification I sent to my telegram channel using the bot.

Any idea what the cause is??

My autotask script

const {
  DefenderRelayProvider,
  DefenderRelaySigner,
} = require("defender-relay-client/lib/ethers");

const { ethers } = require("ethers");

exports.handler = async function (event) {
  const evt = event.request.body.events[0];
  const contractAddress = evt.matchReasons[1].address;

  const matches = [];
  const abi = evt.sentinel.abi;

  const provider = new DefenderRelayProvider(event);
  const signer = new DefenderRelaySigner(event, provider, {
    speed: "fast",
  });

  const greet = new ethers.Contract(contractAddress, abi, signer);
  await greet.pause();

  matches.push({
    hash: evt.hash,
  });

  return { matches };
};