fix: YouTube configured is not mandatory

This commit is contained in:
Eugen Eisler 2024-08-20 23:31:13 +02:00
parent 3d8c4985e8
commit ebe0135d5b

View File

@ -185,7 +185,8 @@ func (o *Fabric) configure() (err error) {
return return
} }
err = o.YouTube.Configure() //YouTube is not mandatory, so ignore not configured error
_ = o.YouTube.Configure()
return return
} }