Fixed issue with validating stream url

This commit is contained in:
tyler 2024-01-31 21:18:40 -05:00
parent 84276e2eb8
commit adacddb97a

View file

@ -50,7 +50,7 @@ func NewChatBot(ctx context.Context, streamUrl string, cfg config.ChatBot, logEr
}
func validUrl(url string) string {
valid := strings.TrimLeft(url, "http://")
valid := url
if !strings.HasPrefix(valid, "https://") {
valid = "https://" + valid
}