diff --git a/app/api/routes/content.py b/app/api/routes/content.py index 81520c6..ed7d29c 100644 --- a/app/api/routes/content.py +++ b/app/api/routes/content.py @@ -171,7 +171,7 @@ async def s_api_v1_content_friendly_list(request): with open(metadata_content.filepath, 'r') as f: metadata = json.loads(f.read()) - preview_link = 'not ready' + preview_link = None if content.meta.get('converted_content'): preview_link = f"{PROJECT_HOST}/api/v1.5/storage/{content.meta['converted_content']['low_preview']}" @@ -180,7 +180,7 @@ async def s_api_v1_content_friendly_list(request):