This commit is contained in:
Javier Feliz 2025-02-13 23:56:06 -05:00
parent e5aa8fe187
commit b6b6db6457

@ -3,7 +3,6 @@ package validation
import (
"errors"
"fmt"
"log"
neturl "net/url"
"strings"
)
@ -46,7 +45,6 @@ func IsMusicUrl(url string) (bool, error) {
}
for _, host := range musicHosts {
log.Println(parsed.Host)
if host == parsed.Host {
return true, nil
}