fix: YouTube configured is not mandatory

This commit is contained in:
Eugen Eisler 2024-08-20 23:27:55 +02:00
parent 9acfc3ef92
commit 3d8c4985e8

View File

@ -106,8 +106,8 @@ func (o *Fabric) Setup() (err error) {
return
}
if err = o.YouTube.Setup(); err != nil {
return
if youtubeErr := o.YouTube.Setup(); youtubeErr != nil {
fmt.Printf("[%v] skipped\n", o.YouTube.GetName())
}
if err = o.PatternsLoader.Setup(); err != nil {