We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4384d57 commit 0fcaeeaCopy full SHA for 0fcaeea
src/telegram/telegram_bot.py
@@ -42,7 +42,11 @@ def __init__(
42
.concurrent_updates(True)
43
)
44
if TELEGRAM_BOT_API:
45
- builder = builder.base_url(f"{TELEGRAM_BOT_API}/bot").local_mode(True)
+ builder = (
46
+ builder.base_url(f"{TELEGRAM_BOT_API}/bot")
47
+ .base_file_url(f"{TELEGRAM_BOT_API}/file/bot")
48
+ .local_mode(True)
49
+ )
50
self.app = builder.build()
51
self.sim = Simulacrum(context_filepath)
52
self.cost_tracker = CostTracker()
0 commit comments