Skip to content

Commit

Permalink
fixed iiif_id
Browse files Browse the repository at this point in the history
  • Loading branch information
BernhardKoschicek committed Sep 26, 2023
1 parent f557d86 commit 163bfa1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion openatlas/api/endpoints/iiif.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ def getManifest(id_):
req = requests.get(
f"{url_root}{app.config['IIIF_PREFIX']}{id_}/info.json")
image_api = req.json()
iiif_id = f"{url_root}iiif/{id_}"
iiif_id = f"{url_root}{id_}"
manifest = {
"@context": "http://iiif.io/api/presentation/2/context.json",
"@id": f"{request.base_url}",
Expand Down

0 comments on commit 163bfa1

Please sign in to comment.