The MIME type of JPEGs serialised to ActivityPub was misspelled as "image/jpg" (instead of "image/jpeg"). Fixed.

Tests updated.
status-serialisers
Marnanel Thurman 2020-08-27 15:35:06 +01:00
rodzic b0aa91da76
commit 5ba53dfbb2
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -76,7 +76,7 @@ class ImageField(serializers.Field):
def to_representation(self, value):
return {
'type': 'Image',
'mediaType': 'image/jpg', # FIXME always?
'mediaType': 'image/jpeg', # FIXME always?
'url': value,
}