mirror of
https://github.com/cheeaun/phanpy.git
synced 2025-02-02 14:16:39 +01:00
Don't set onlyMedia if not set
This defaults to false for Mastodon, but true for Pixelfed
This commit is contained in:
parent
e782cc0dde
commit
501e43207b
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue