scraping audio url

This commit is contained in:
acute_interpreter_panic
2025-10-10 13:44:00 +02:00
parent 82c541653c
commit 293de8b473
3 changed files with 47 additions and 9 deletions

View File

@@ -24,7 +24,7 @@ func ZeroPad(num int, length int) string {
func IsNumeric(num string) bool {
for _, c := range num {
if c >= '0' && c <= '9' {
if c < '0' || c > '9' {
return false
}
}