diff options
| author | Mar0xy <marie@kaifa.ch> | 2023-09-25 05:22:45 +0200 |
|---|---|---|
| committer | Mar0xy <marie@kaifa.ch> | 2023-09-25 05:22:45 +0200 |
| commit | c10f7856147e656faadee97a22e52e31f1e9087e (patch) | |
| tree | 055845e4d9f19e1dab091aa24a80c34d7855ad52 /packages/megalodon/src/misskey/api_client.ts | |
| parent | upd: return empty list on empty custom emoji (diff) | |
| download | sharkey-c10f7856147e656faadee97a22e52e31f1e9087e.tar.gz sharkey-c10f7856147e656faadee97a22e52e31f1e9087e.tar.bz2 sharkey-c10f7856147e656faadee97a22e52e31f1e9087e.zip | |
upd: get alt and blurhash on media
Diffstat (limited to 'packages/megalodon/src/misskey/api_client.ts')
| -rw-r--r-- | packages/megalodon/src/misskey/api_client.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/megalodon/src/misskey/api_client.ts b/packages/megalodon/src/misskey/api_client.ts index 36746c1e87..a9806c0abf 100644 --- a/packages/megalodon/src/misskey/api_client.ts +++ b/packages/megalodon/src/misskey/api_client.ts @@ -204,8 +204,8 @@ namespace MisskeyAPI { width: f.properties.width, height: f.properties.height }, - description: null, - blurhash: null + description: f.comment ? f.comment : null, + blurhash: f.blurhash ? f.blurhash : null } } |