mirror of
https://github.com/cheeaun/phanpy.git
synced 2025-03-23 06:09:21 +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,
|
limit: LIMIT,
|
||||||
any: hashtags.slice(1),
|
any: hashtags.slice(1),
|
||||||
maxId: firstLoad ? undefined : maxID.current,
|
maxId: firstLoad ? undefined : maxID.current,
|
||||||
onlyMedia: media,
|
onlyMedia: media ? true : undefined,
|
||||||
})
|
})
|
||||||
.next();
|
.next();
|
||||||
let { value } = results;
|
let { value } = results;
|
||||||
|
|
Loading…
Add table
Reference in a new issue