fixed empty url in format selection

Closes #163
This commit is contained in:
2024-07-14 15:52:36 +02:00
parent c0c2fcb009
commit 38a0cedc9c
3 changed files with 2 additions and 4 deletions

View File

@@ -75,7 +75,7 @@ func (s *Service) Formats(args Args, meta *internal.DownloadFormats) error {
err error
p = internal.Process{Url: args.URL, Logger: s.logger}
)
*meta, err = p.GetFormatsSync()
*meta, err = p.GetFormats()
return err
}