Only validate URL if type is url
This commit is contained in:
@@ -27,6 +27,7 @@ func NewConfig(actionType string, actionData string) *Config {
|
||||
}
|
||||
|
||||
func (config *Config) Validate() {
|
||||
if config.ActionType == "url" {
|
||||
// Parse URL in config
|
||||
urlParser, err := url.Parse(config.ActionData)
|
||||
// If there was an error parsing
|
||||
@@ -42,6 +43,7 @@ func (config *Config) Validate() {
|
||||
// Alert user of invalid host
|
||||
log.Fatal().Msg("Invalid URL host")
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Create config file
|
||||
|
||||
Reference in New Issue
Block a user