mirror of
https://github.com/TheFunny/TelegramTwitterMediaBot.git
synced 2026-09-23 23:32:05 +00:00
fix int admin id
This commit is contained in:
@@ -3,7 +3,7 @@ import os
|
|||||||
import re
|
import re
|
||||||
|
|
||||||
BOT_TOKEN = os.getenv("BOT_TOKEN")
|
BOT_TOKEN = os.getenv("BOT_TOKEN")
|
||||||
ADMIN = os.getenv("BOT_ADMIN").split(",")
|
ADMIN = [int(i) for i in os.getenv("BOT_ADMIN").split(",")]
|
||||||
|
|
||||||
WEBHOOK = os.getenv("WEBHOOK", False)
|
WEBHOOK = os.getenv("WEBHOOK", False)
|
||||||
if WEBHOOK:
|
if WEBHOOK:
|
||||||
|
|||||||
Reference in New Issue
Block a user