diff options
author | Thibaut Girka <thib@sitedethib.com> | 2018-05-27 19:32:25 +0200 |
---|---|---|
committer | ThibG <thib@sitedethib.com> | 2018-05-29 21:25:28 +0200 |
commit | 6020a211304a3c33cc311083b15edc3f08a13edc (patch) | |
tree | 6df41a7c4538699f8609010b455088b66194b17f | |
parent | 5d16fd3f286810463d1f5f9da4a3301cf2bdf4b7 (diff) |
[Glitch] Fix LoadMore on account media gallery
Port 3523aa440ba3f52bf28fe1e9707506d327c4431f to glitch-soc
-rw-r--r-- | app/javascript/flavours/glitch/features/account_gallery/index.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/javascript/flavours/glitch/features/account_gallery/index.js b/app/javascript/flavours/glitch/features/account_gallery/index.js index 8f770eb9a..ebd23a971 100644 --- a/app/javascript/flavours/glitch/features/account_gallery/index.js +++ b/app/javascript/flavours/glitch/features/account_gallery/index.js @@ -67,7 +67,7 @@ export default class AccountGallery extends ImmutablePureComponent { handleScrollToBottom = () => { if (this.props.hasMore) { - this.handleLoadMore(this.props.medias.last().get('id')); + this.handleLoadMore(this.props.medias.last().getIn(['status', 'id'])); } } |