Skip to content

Commit

Permalink
🚨 convert pydantic url to string before concat
Browse files Browse the repository at this point in the history
  • Loading branch information
StarHeartHunt committed Feb 14, 2024
1 parent 5784916 commit 83af51a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nonebot/adapters/feishu/adapter.py
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ def setup(self) -> None:
self.driver.on_startup(self.startup)

def get_api_url(self, bot_config: BotConfig, path: str):
api_base = (
api_base = str(
self.feishu_config.feishu_lark_api_base
if bot_config.is_lark
else self.feishu_config.feishu_api_base
Expand Down

0 comments on commit 83af51a

Please sign in to comment.