Implement media description and blurhash for misskey

This commit is contained in:
fruye 2023-03-24 00:13:12 +01:00 committed by Laura Hausmann
parent dac8c95a28
commit 3512bedeb0
Signed by: zotan
GPG key ID: D044E84C5BE01605
2 changed files with 4 additions and 2 deletions

View file

@ -166,8 +166,8 @@ namespace MisskeyAPI {
width: f.properties.width,
height: f.properties.height
},
description: null,
blurhash: null
description: f.comment,
blurhash: f.blurhash
}
}

View file

@ -14,5 +14,7 @@ namespace MisskeyEntity {
}
url: string
thumbnailUrl: string
comment: string
blurhash: string
}
}