diff --git a/bot.go b/bot.go index 1b93aa3..d3f5354 100644 --- a/bot.go +++ b/bot.go @@ -440,17 +440,19 @@ func botBackupImport(m *tb.Message) { TGCmdQueue <- c return } - r := regexp.MustCompile(`^((http[s]?\:)\/\/)?([^\?\:\/#]+)(\:([0-9]+))?(\/[^\?\#]*)?(\?([^#]*))?(#.*)?.zip$`) - if !r.MatchString(m.Payload) { - c := TGCommand{ - Type: commandReplyMsg, - Text: "URL not valid.", - FromMsgID64: int64(m.ID), - FromChatID64: m.Chat.ID, + /* + r := regexp.MustCompile(`^((http[s]?\:)\/\/)?([^\?\:\/#]+)(\:([0-9]+))?(\/[^\?\#]*)?(\?([^#]*))?(#.*)?.zip$`) + if !r.MatchString(m.Payload) { + c := TGCommand{ + Type: commandReplyMsg, + Text: "URL not valid.", + FromMsgID64: int64(m.ID), + FromChatID64: m.Chat.ID, + } + TGCmdQueue <- c + return } - TGCmdQueue <- c - return - } + */ p := JobPayloadBackupImport{ URL: m.Payload,