mirror of
https://github.com/lunaisnotaboy/mastodon.git
synced 2024-11-20 05:44:01 +00:00
[Glitch] Fix LoadMore on account media gallery
Port 3523aa440b
to glitch-soc
This commit is contained in:
parent
5d16fd3f28
commit
6020a21130
|
@ -67,7 +67,7 @@ export default class AccountGallery extends ImmutablePureComponent {
|
||||||
|
|
||||||
handleScrollToBottom = () => {
|
handleScrollToBottom = () => {
|
||||||
if (this.props.hasMore) {
|
if (this.props.hasMore) {
|
||||||
this.handleLoadMore(this.props.medias.last().get('id'));
|
this.handleLoadMore(this.props.medias.last().getIn(['status', 'id']));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue