Commit 798261e

benny-dou <60535774+benny-dou@users.noreply.github.com>
2025-02-06 16:31:51
fix: add missing `kwargs`
1 parent ec1a431
Changed files (1)
src/handler.py
@@ -89,11 +89,11 @@ async def handle_utilities(
     if wget:
         await download_url_in_message(client, message, **kwargs)  # /wget
     if ocr:
-        await send_to_ocr_bridge(client, message)  # /ocr
+        await send_to_ocr_bridge(client, message, **kwargs)  # /ocr
     if price:
-        await get_asset_price(client, message)  # /ocr
+        await get_asset_price(client, message, **kwargs)  # /ocr
     if summary:
-        await ai_summary(client, message)  # /summary
+        await ai_summary(client, message, **kwargs)  # /summary
     if raw_img:
         await convert_raw_img_file(client, message, **kwargs)