diff --git a/src/status.ts b/src/status.ts
index 435d3bf..1cb0e86 100644
--- a/src/status.ts
+++ b/src/status.ts
@@ -163,15 +163,16 @@ export const handleStatus = async (
headers.push(``);
pushedCardType = true;
}
- } else if (media.type === 'video') {
+ } else if (media.type === 'video' || media.type === 'animated_gif') {
headers.push(``);
authorText = encodeURIComponent(text);
// Find the variant with the highest bitrate
let bestVariant = media.video_info?.variants?.reduce?.((a, b) =>
- (a.bitrate || 0) > (b.bitrate || 0) ? a : b
+ (a.bitrate ?? 0) > (b.bitrate ?? 0) ? a : b
);
+
headers.push(
``,
``,