diff --git a/server/internal/process.go b/server/internal/process.go index 498fdbe..9d38a5a 100644 --- a/server/internal/process.go +++ b/server/internal/process.go @@ -270,6 +270,12 @@ func (p *Process) GetFormatsSync() (DownloadFormats, error) { } func (p *Process) SetPending() { + // Since video's title isn't available yet, fill in with the URL. + p.Info = DownloadInfo{ + URL: p.Url, + Title: p.Url, + CreatedAt: time.Now(), + } p.Progress.Status = StatusPending }