fix(fastapi): export assets not found issue

This commit is contained in:
sauravniraula 2025-07-29 14:10:46 +05:45
parent 657eabe128
commit f28e25fb0c
No known key found for this signature in database
GPG key ID: 60FCC1B5A5E83326

View file

@ -74,9 +74,9 @@ class PptxPresentationCreator:
image_path = each_shape.picture.path
if image_path.startswith("http"):
if "app_data/" in image_path:
relative_path = image_path.split("/app_data/")[1]
relative_path = image_path.split("app_data/")[1]
each_shape.picture.path = os.path.join(
"app_data", relative_path
"/app_data", relative_path
)
each_shape.picture.is_network = False
continue
@ -89,9 +89,9 @@ class PptxPresentationCreator:
image_path = each_shape.picture.path
if image_path.startswith("http"):
if "app_data" in image_path:
relative_path = image_path.split("/app_data/")[1]
relative_path = image_path.split("app_data/")[1]
each_shape.picture.path = os.path.join(
"app_data", relative_path
"/app_data", relative_path
)
each_shape.picture.is_network = False
continue