[backend/masto-client] Fix playback of GIF images (ISH-284)

This commit is contained in:
Laura Hausmann 2024-05-02 23:38:29 +02:00
parent 0ad4346e51
commit 50adfc6aa4
No known key found for this signature in database
GPG key ID: D044E84C5BE01605

View file

@ -21,7 +21,7 @@ public class AttachmentEntity
{
AttachmentType.Unknown => "unknown",
AttachmentType.Image => "image",
AttachmentType.Gif => "gifv",
AttachmentType.Gif => "image",
AttachmentType.Video => "video",
AttachmentType.Audio => "audio",
_ => throw new ArgumentOutOfRangeException()