summaryrefslogtreecommitdiffstats
path: root/app/javascript/mastodon/features/follow_recommendations/index.js
diff options
context:
space:
mode:
Diffstat (limited to 'app/javascript/mastodon/features/follow_recommendations/index.js')
-rw-r--r--app/javascript/mastodon/features/follow_recommendations/index.js10
1 files changed, 10 insertions, 0 deletions
diff --git a/app/javascript/mastodon/features/follow_recommendations/index.js b/app/javascript/mastodon/features/follow_recommendations/index.js
index 5b30a206ee6..a35ff3e8244 100644
--- a/app/javascript/mastodon/features/follow_recommendations/index.js
+++ b/app/javascript/mastodon/features/follow_recommendations/index.js
@@ -7,6 +7,7 @@ import { FormattedMessage } from 'react-intl';
import { fetchSuggestions } from 'mastodon/actions/suggestions';
import { changeSetting, saveSettings } from 'mastodon/actions/settings';
import { requestBrowserPermission } from 'mastodon/actions/notifications';
+import { markAsPartial } from 'mastodon/actions/timelines';
import Column from 'mastodon/features/ui/components/column';
import Account from './components/account';
import Logo from 'mastodon/components/logo';
@@ -42,6 +43,15 @@ class FollowRecommendations extends ImmutablePureComponent {
}
}
+ componentWillUnmount () {
+ const { dispatch } = this.props;
+
+ // Force the home timeline to be reloaded when the user navigates
+ // to it; if the user is new, it would've been empty before
+
+ dispatch(markAsPartial('home'));
+ }
+
handleDone = () => {
const { dispatch } = this.props;
const { router } = this.context;