fix(frontend): incorrectly showRepliesToOthersInTimeline can be shown
This commit is contained in:
parent
2862d362b5
commit
9a941941b0
|
|
@ -98,6 +98,7 @@ async function onClick() {
|
|||
userId: props.user.id,
|
||||
withReplies: defaultStore.state.defaultWithReplies,
|
||||
});
|
||||
props.user.withReplies = defaultStore.state.defaultWithReplies;
|
||||
hasPendingFollowRequestFromYou = true;
|
||||
|
||||
claimAchievement('following1');
|
||||
|
|
|
|||
|
|
@ -31,6 +31,7 @@ async function follow(user): Promise<void> {
|
|||
userId: user.id,
|
||||
withReplies: defaultStore.state.defaultWithReplies,
|
||||
});
|
||||
user.withReplies = defaultStore.state.defaultWithReplies;
|
||||
}
|
||||
|
||||
const acct = new URL(location.href).searchParams.get('acct');
|
||||
|
|
|
|||
Loading…
Reference in New Issue