fix: APに配信するアイコンのURLを修正

This commit is contained in:
usbharu 2023-12-07 01:08:48 +09:00
parent ff4d605480
commit 8eab0be498
1 changed files with 4 additions and 4 deletions

View File

@ -58,8 +58,8 @@ class APUserServiceImpl(
url = userUrl,
icon = Image(
type = emptyList(),
mediaType = "image/png",
url = "$userUrl/icon.png"
mediaType = "image/jpeg",
url = "$userUrl/icon.jpg"
),
publicKey = Key(
id = userEntity.keyId,
@ -124,8 +124,8 @@ class APUserServiceImpl(
url = id,
icon = Image(
type = emptyList(),
mediaType = "image/png",
url = "$id/icon.png"
mediaType = "image/jpeg",
url = "$id/icon.jpg"
),
publicKey = Key(
id = userEntity.keyId,