Версия 1.0.3 - фикс парсинга атрибутов тега #EXTM3U
All checks were successful
release / release (push) Successful in 1m15s

This commit is contained in:
2025-05-13 16:45:10 +08:00
parent c00dc8d33e
commit 4772f0179d
2 changed files with 2 additions and 2 deletions

View File

@@ -13,7 +13,7 @@ import (
"github.com/redis/go-redis/v9"
)
const VERSION = "1.0.2"
const VERSION = "1.0.3"
// Arguments описывает аргументы командной строки
type Arguments struct {

View File

@@ -164,7 +164,7 @@ func (pls *Playlist) Parse() Playlist {
}
if strings.HasPrefix(line, "#EXTM3U") {
pls.Attributes = parseAttributes(content)
pls.Attributes = parseAttributes(line)
continue
}