Skip to content

Commit

Permalink
fix: rendition urls are not FQDNs
Browse files Browse the repository at this point in the history
  • Loading branch information
dopry committed Aug 30, 2024
1 parent 0d20a8c commit a868e21
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion grapple/types/images.py
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ class Meta:
def resolve_url(
instance: WagtailImageRendition, info: GraphQLResolveInfo, **kwargs
):
return instance.full_url
return get_media_item_url(instance)


class ImageObjectType(DjangoObjectType):
Expand Down

0 comments on commit a868e21

Please sign in to comment.