all repos — gif-escarbot @ 21f3d3172d52d4c4f88ec37203d32cf5dfcbe2fc

Earthbound Café's custom delivery bot with other cool utilities built-in.

fixed parsing error
Marco Andronaco andronacomarco@gmail.com
Sat, 15 Jul 2023 23:42:16 +0200
commit

21f3d3172d52d4c4f88ec37203d32cf5dfcbe2fc

parent

b1a06a0f6fecabe46c679a1b6ade2ddaa3871746

1 files changed, 1 insertions(+), 1 deletions(-)

jump to
M main.pymain.py

@@ -5,7 +5,7 @@ from os import getenv

import logging async def forward(update: Update, _): - if not update.effective_chat.id == CHANNEL_ID: + if not update.effective_chat.id == int(CHANNEL_ID): return logger.info("Ignoring message since it did not come from the correct chat_id.") if update.channel_post is None: