From 6bf72336d0af0aa57064fc40c267677bb27577f3 Mon Sep 17 00:00:00 2001 From: Yuriy Date: Tue, 18 Jun 2024 15:24:45 -0400 Subject: [PATCH] Telegram return API result always --- API-Functions.ahk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/API-Functions.ahk b/API-Functions.ahk index a367abe..2dfb54e 100644 --- a/API-Functions.ahk +++ b/API-Functions.ahk @@ -117,7 +117,7 @@ SendTelegramMessage(token, chatID, text := "", ParseMode := "MarkdownV2") json_resp := whr.ResponseText whr := ; free COM object ; Msgbox % "json_resp: " json_resp - if(InStr(json_resp, "error_code")) + ; if(InStr(json_resp, "error_code")) Return json_resp }