remove url filtering for backup
This commit is contained in:
parent
ffa06fa67e
commit
99b211e4d9
22
bot.go
22
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,
|
||||
|
Loading…
Reference in New Issue
Block a user