From 63b5607d1b67513b3c3f5c7815b9937f83dafa89 Mon Sep 17 00:00:00 2001 From: user Date: Fri, 8 Mar 2024 02:59:25 +0300 Subject: [PATCH] dev@locazia: fix metadata cover --- app/core/content/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/core/content/utils.py b/app/core/content/utils.py index cbbf441..500695a 100644 --- a/app/core/content/utils.py +++ b/app/core/content/utils.py @@ -17,7 +17,7 @@ async def create_metadata_for_item( authors: list = None ) -> StoredContent: assert title, "No title provided" - assert cover_url, "No cover_url provided" + # assert cover_url, "No cover_url provided" assert len(title) > 3, "Title too short" title = title[:100].strip()