From ebe0135d5b00db48907ab98bac2299924c595b4e Mon Sep 17 00:00:00 2001 From: Eugen Eisler Date: Tue, 20 Aug 2024 23:31:13 +0200 Subject: [PATCH] fix: YouTube configured is not mandatory --- core/fabric.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/core/fabric.go b/core/fabric.go index 0ce41ff..99a0864 100644 --- a/core/fabric.go +++ b/core/fabric.go @@ -185,7 +185,8 @@ func (o *Fabric) configure() (err error) { return } - err = o.YouTube.Configure() + //YouTube is not mandatory, so ignore not configured error + _ = o.YouTube.Configure() return }