Compare commits
2 Commits
670b97d6b1
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
| 95bda715cb | |||
| ae2027826f |
@@ -167,7 +167,7 @@ SendTelegramPhoto(token, chatID, file, caption := "", ParseMode := "MarkdownV2")
|
|||||||
whr := ; free COM object
|
whr := ; free COM object
|
||||||
; Msgbox % "json_resp: " json_resp
|
; Msgbox % "json_resp: " json_resp
|
||||||
|
|
||||||
if(InStr(json_resp, "error_code"))
|
; if(InStr(json_resp, "error_code"))
|
||||||
Return json_resp
|
Return json_resp
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -195,7 +195,7 @@ SendTelegramVideo(token, chatID, file, caption := "", ParseMode := "MarkdownV2")
|
|||||||
whr := ; free COM object
|
whr := ; free COM object
|
||||||
; Msgbox % "json_resp: " json_resp
|
; Msgbox % "json_resp: " json_resp
|
||||||
|
|
||||||
if(InStr(json_resp, "error_code"))
|
; if(InStr(json_resp, "error_code"))
|
||||||
Return json_resp
|
Return json_resp
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -224,7 +224,7 @@ SendTelegramFile(token, chatID, file, caption := "", ParseMode := "MarkdownV2")
|
|||||||
whr := ; free COM object
|
whr := ; free COM object
|
||||||
; Msgbox % "json_resp: " json_resp
|
; Msgbox % "json_resp: " json_resp
|
||||||
|
|
||||||
if(InStr(json_resp, "error_code"))
|
; if(InStr(json_resp, "error_code"))
|
||||||
Return json_resp
|
Return json_resp
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -109,13 +109,9 @@ Func_LogErrorsToTextFile(Text){
|
|||||||
|
|
||||||
; ErrorLoggingFile := Filepath
|
; ErrorLoggingFile := Filepath
|
||||||
FormatTime, TodayDate , YYYYMMDDHH24MISS, yyyyMMdd_hhmmss
|
FormatTime, TodayDate , YYYYMMDDHH24MISS, yyyyMMdd_hhmmss
|
||||||
text =
|
|
||||||
(
|
|
||||||
|
|
||||||
---------------%TodayDate%---------------
|
text =`n`n---------------%TodayDate%---------------`n%Text%
|
||||||
%Text%
|
|
||||||
|
|
||||||
)
|
|
||||||
FileAppend, %Text%, %ErrorLoggingFilePath%
|
FileAppend, %Text%, %ErrorLoggingFilePath%
|
||||||
}
|
}
|
||||||
; -------------------------------/LogErrorsToTextFile-------------------------------
|
; -------------------------------/LogErrorsToTextFile-------------------------------
|
||||||
@@ -635,16 +631,16 @@ if (ConfirmBeforeSubmit && ConfirmBeforeSubmitMsgboxFunc() != true) {
|
|||||||
return
|
return
|
||||||
}
|
}
|
||||||
*/
|
*/
|
||||||
OnMessage(0x44, "OnMsgBoxUserConfirmation")
|
OnMessage(0x44, "OnMsgBoxUserConfirmation")
|
||||||
MsgBox 0x21, User Confirmation, Please check that all data was input correctly and fix any mistakes and then click PROCEED to finalize the Upload.`n`nClick STOP to cancel the rest of this Upload and move on to the next website.
|
MsgBox 0x21, User Confirmation, Please check that all data was input correctly and fix any mistakes and then click PROCEED to finalize the Upload.`n`nClick STOP to cancel the rest of this Upload and move on to the next website.
|
||||||
OnMessage(0x44, "")
|
OnMessage(0x44, "")
|
||||||
IfMsgBox OK, {
|
IfMsgBox OK, {
|
||||||
return true
|
return true
|
||||||
} Else IfMsgBox Cancel, {
|
} Else IfMsgBox Cancel, {
|
||||||
Message = User Selected STOP button when asked for confirmation. Cancelling Rest of Site Upload.
|
Message = User Selected STOP button when asked for confirmation. Cancelling Rest of Site Upload.
|
||||||
Return %Message%
|
Return %Message%
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user