Fix: enhance: タイムラインにフォロイーの行った他人へのリプライを含めるかどうかの設定をアカウントに保存するのをやめるように (#10982)
This commit is contained in:
parent
34a32a8334
commit
0465e74521
1 changed files with 1 additions and 3 deletions
|
@ -127,7 +127,6 @@ const profile = reactive({
|
|||
lang: $i.lang,
|
||||
isBot: $i.isBot,
|
||||
isCat: $i.isCat,
|
||||
showTimelineReplies: $i.showTimelineReplies,
|
||||
});
|
||||
|
||||
watch(() => profile, () => {
|
||||
|
@ -151,7 +150,7 @@ while (fields.value.length < 4) {
|
|||
addField();
|
||||
}
|
||||
|
||||
function deleteField(index: number) {
|
||||
function deleteField(index: number) {
|
||||
fields.value.splice(index, 1);
|
||||
}
|
||||
|
||||
|
@ -176,7 +175,6 @@ function save() {
|
|||
lang: profile.lang || null,
|
||||
isBot: !!profile.isBot,
|
||||
isCat: !!profile.isCat,
|
||||
showTimelineReplies: !!profile.showTimelineReplies,
|
||||
});
|
||||
claimAchievement('profileFilled');
|
||||
if (profile.name === 'syuilo' || profile.name === 'しゅいろ') {
|
||||
|
|
Loading…
Reference in a new issue