mirror of
https://github.com/yingziwu/mastodon.git
synced 2026-02-15 14:53:17 +00:00
Fix pinned hashtag columns fully refreshing unprompted (#36497)
This commit is contained in:
parent
869eeecfee
commit
ef53dcfd8c
1 changed files with 1 additions and 1 deletions
|
|
@ -142,7 +142,7 @@ class HashtagTimeline extends PureComponent {
|
|||
const { params, local } = this.props;
|
||||
const { id, tags } = prevProps.params;
|
||||
|
||||
if (id !== params.id || !isEqual(tags, params.tags) || !isEqual(local, params.local)) {
|
||||
if (id !== params.id || !isEqual(tags, params.tags) || !isEqual(local, prevProps.local)) {
|
||||
this._unload();
|
||||
this._load();
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue