From 501e43207b8ff1ae24747cae46708ae6323f7cae Mon Sep 17 00:00:00 2001 From: Lim Chee Aun Date: Sat, 13 Apr 2024 00:07:48 +0800 Subject: [PATCH] Don't set onlyMedia if not set This defaults to false for Mastodon, but true for Pixelfed --- src/pages/hashtag.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/hashtag.jsx b/src/pages/hashtag.jsx index ec7809a..6fe4e1d 100644 --- a/src/pages/hashtag.jsx +++ b/src/pages/hashtag.jsx @@ -73,7 +73,7 @@ function Hashtags({ media: mediaView, columnMode, ...props }) { limit: LIMIT, any: hashtags.slice(1), maxId: firstLoad ? undefined : maxID.current, - onlyMedia: media, + onlyMedia: media ? true : undefined, }) .next(); let { value } = results;