Skip to content

Commit

Permalink
fix: Correct placeholder image path in media data extraction
Browse files Browse the repository at this point in the history
  • Loading branch information
maehr committed Nov 15, 2024
1 parent 3755b8e commit 569ba11
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/process_data.py
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ def extract_media_data(media, item_dc_identifier):
image_available = True
if "platzhalter" in media.get("o:source", ""):
image_available = False
local_image_path = "assets/img/placeholders.svg"
local_image_path = "assets/img/placeholder.svg"

# Extract media data
object_location = (
Expand Down

0 comments on commit 569ba11

Please sign in to comment.