Commit 798261e
Changed files (1)
src
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)