Possible typo in TELEGRAM_CHAT_ID? #441
-
The traceback threw I trace a bit and I found that the names are different, but should be mapped correctly.
Here's the log
Am I doing something wrong? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
It's fine actually. Now coming to the The piece of code expect Now coming to the error message - The error message also validate above information as it states the type of I think the |
Beta Was this translation helpful? Give feedback.
It's fine actually.
The base workflow expects
CHAT_ID
as input.Docker Py Revanced accepts
TELEGRAM_CHAT_ID
to keep things sane and it passes the value to the middle workflow asTELEGRAM_CHAT_ID
and the middle workflow then passesTELEGRAM_CHAT_ID
asCHAT_ID
to the base workflow.Now coming to the
INPUT_
-The piece of code expect
INPUT_CHAT_ID
instead ofCHAT_ID
in base workflow. As Github automatically addINPUT_
in front of the all the envs.Now coming to the error message -
The error message also validate above information as it states the type of
CHAT_ID
is not integer and it doesn't complain that the variable is missing. So the base workflow actually received the input but the inpu…