diff --git a/app/javascript/flavours/glitch/features/blocks/index.js b/app/javascript/flavours/glitch/features/blocks/index.js
index 1a7206f802..2d0f10ae7b 100644
--- a/app/javascript/flavours/glitch/features/blocks/index.js
+++ b/app/javascript/flavours/glitch/features/blocks/index.js
@@ -41,11 +41,6 @@ export default class Blocks extends ImmutablePureComponent {
this.props.dispatch(expandBlocks());
}, 300, { leading: true });
- shouldUpdateScroll = (prevRouterProps, { location }) => {
- if ((((prevRouterProps || {}).location || {}).state || {}).mastodonModalOpen) return false;
- return !(location.state && location.state.mastodonModalOpen);
- }
-
render () {
const { intl, accountIds, hasMore } = this.props;
@@ -66,7 +61,6 @@ export default class Blocks extends ImmutablePureComponent {
scrollKey='blocks'
onLoadMore={this.handleLoadMore}
hasMore={hasMore}
- shouldUpdateScroll={this.shouldUpdateScroll}
emptyMessage={emptyMessage}
>
{accountIds.map(id =>
diff --git a/app/javascript/flavours/glitch/features/community_timeline/index.js b/app/javascript/flavours/glitch/features/community_timeline/index.js
index 2c0fbff36a..24126e5bcf 100644
--- a/app/javascript/flavours/glitch/features/community_timeline/index.js
+++ b/app/javascript/flavours/glitch/features/community_timeline/index.js
@@ -99,10 +99,6 @@ export default class CommunityTimeline extends React.PureComponent {
dispatch(expandCommunityTimeline({ maxId, onlyMedia }));
}
- shouldUpdateScroll = (prevRouterProps, { location }) => {
- return !(location.state && location.state.mastodonModalOpen)
- }
-
render () {
const { intl, hasUnread, columnId, multiColumn, onlyMedia } = this.props;
const pinned = !!columnId;
@@ -125,7 +121,6 @@ export default class CommunityTimeline extends React.PureComponent {
}
diff --git a/app/javascript/flavours/glitch/features/favourites/index.js b/app/javascript/flavours/glitch/features/favourites/index.js
index 16ce6ed103..81f0b24c4d 100644
--- a/app/javascript/flavours/glitch/features/favourites/index.js
+++ b/app/javascript/flavours/glitch/features/favourites/index.js
@@ -40,11 +40,6 @@ export default class Favourites extends ImmutablePureComponent {
}
}
- shouldUpdateScroll = (prevRouterProps, { location }) => {
- if ((((prevRouterProps || {}).location || {}).state || {}).mastodonModalOpen) return false;
- return !(location.state && location.state.mastodonModalOpen);
- }
-
handleHeaderClick = () => {
this.column.scrollTop();
}
@@ -76,7 +71,6 @@ export default class Favourites extends ImmutablePureComponent {
/>
{accountIds.map(id =>
diff --git a/app/javascript/flavours/glitch/features/follow_requests/index.js b/app/javascript/flavours/glitch/features/follow_requests/index.js
index eacf1e0ac9..89340320e5 100644
--- a/app/javascript/flavours/glitch/features/follow_requests/index.js
+++ b/app/javascript/flavours/glitch/features/follow_requests/index.js
@@ -41,11 +41,6 @@ export default class FollowRequests extends ImmutablePureComponent {
this.props.dispatch(expandFollowRequests());
}, 300, { leading: true });
- shouldUpdateScroll = (prevRouterProps, { location }) => {
- if ((((prevRouterProps || {}).location || {}).state || {}).mastodonModalOpen) return false;
- return !(location.state && location.state.mastodonModalOpen);
- }
-
render () {
const { intl, accountIds, hasMore } = this.props;
@@ -67,7 +62,6 @@ export default class FollowRequests extends ImmutablePureComponent {
scrollKey='follow_requests'
onLoadMore={this.handleLoadMore}
hasMore={hasMore}
- shouldUpdateScroll={this.shouldUpdateScroll}
emptyMessage={emptyMessage}
>
{accountIds.map(id =>
diff --git a/app/javascript/flavours/glitch/features/followers/index.js b/app/javascript/flavours/glitch/features/followers/index.js
index 704e0c92e0..c57a2b1a20 100644
--- a/app/javascript/flavours/glitch/features/followers/index.js
+++ b/app/javascript/flavours/glitch/features/followers/index.js
@@ -64,11 +64,6 @@ export default class Followers extends ImmutablePureComponent {
this.props.dispatch(expandFollowers(this.props.params.accountId));
}, 300, { leading: true });
- shouldUpdateScroll = (prevRouterProps, { location }) => {
- if ((((prevRouterProps || {}).location || {}).state || {}).mastodonModalOpen) return false;
- return !(location.state && location.state.mastodonModalOpen);
- }
-
setRef = c => {
this.column = c;
}
@@ -102,7 +97,6 @@ export default class Followers extends ImmutablePureComponent {
scrollKey='followers'
hasMore={hasMore}
onLoadMore={this.handleLoadMore}
- shouldUpdateScroll={this.shouldUpdateScroll}
prepend={}
alwaysPrepend
emptyMessage={emptyMessage}
diff --git a/app/javascript/flavours/glitch/features/following/index.js b/app/javascript/flavours/glitch/features/following/index.js
index 46cc773e7b..b61f839880 100644
--- a/app/javascript/flavours/glitch/features/following/index.js
+++ b/app/javascript/flavours/glitch/features/following/index.js
@@ -97,7 +97,6 @@ export default class Following extends ImmutablePureComponent {
scrollKey='following'
hasMore={hasMore}
onLoadMore={this.handleLoadMore}
- shouldUpdateScroll={this.shouldUpdateScroll}
prepend={}
alwaysPrepend
emptyMessage={emptyMessage}
diff --git a/app/javascript/flavours/glitch/features/mutes/index.js b/app/javascript/flavours/glitch/features/mutes/index.js
index 35c15deec8..e5b5bb46d1 100644
--- a/app/javascript/flavours/glitch/features/mutes/index.js
+++ b/app/javascript/flavours/glitch/features/mutes/index.js
@@ -41,11 +41,6 @@ export default class Mutes extends ImmutablePureComponent {
this.props.dispatch(expandMutes());
}, 300, { leading: true });
- shouldUpdateScroll = (prevRouterProps, { location }) => {
- if ((((prevRouterProps || {}).location || {}).state || {}).mastodonModalOpen) return false;
- return !(location.state && location.state.mastodonModalOpen);
- }
-
render () {
const { intl, accountIds, hasMore } = this.props;
@@ -66,7 +61,6 @@ export default class Mutes extends ImmutablePureComponent {
scrollKey='mutes'
onLoadMore={this.handleLoadMore}
hasMore={hasMore}
- shouldUpdateScroll={this.shouldUpdateScroll}
emptyMessage={emptyMessage}
>
{accountIds.map(id =>
diff --git a/app/javascript/flavours/glitch/features/public_timeline/index.js b/app/javascript/flavours/glitch/features/public_timeline/index.js
index 7fe4722028..e5f5171aa3 100644
--- a/app/javascript/flavours/glitch/features/public_timeline/index.js
+++ b/app/javascript/flavours/glitch/features/public_timeline/index.js
@@ -99,10 +99,6 @@ export default class PublicTimeline extends React.PureComponent {
dispatch(expandPublicTimeline({ maxId, onlyMedia }));
}
- shouldUpdateScroll = (prevRouterProps, { location }) => {
- return !(location.state && location.state.mastodonModalOpen)
- }
-
render () {
const { intl, columnId, hasUnread, multiColumn, onlyMedia } = this.props;
const pinned = !!columnId;
diff --git a/app/javascript/flavours/glitch/features/reblogs/index.js b/app/javascript/flavours/glitch/features/reblogs/index.js
index cb1dc5c29b..14f44a20af 100644
--- a/app/javascript/flavours/glitch/features/reblogs/index.js
+++ b/app/javascript/flavours/glitch/features/reblogs/index.js
@@ -40,11 +40,6 @@ export default class Reblogs extends ImmutablePureComponent {
}
}
- shouldUpdateScroll = (prevRouterProps, { location }) => {
- if ((((prevRouterProps || {}).location || {}).state || {}).mastodonModalOpen) return false;
- return !(location.state && location.state.mastodonModalOpen);
- }
-
handleHeaderClick = () => {
this.column.scrollTop();
}
@@ -77,7 +72,6 @@ export default class Reblogs extends ImmutablePureComponent {
{accountIds.map(id =>