Fix: enhance: タイムラインにフォロイーの行った他人へのリプライを含めるかどうかの設定をアカウントに保存するのをやめるように (#10982)

This commit is contained in:
atsuchan 2023-06-09 14:08:35 +09:00 committed by GitHub
parent 34a32a8334
commit 0465e74521
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -127,7 +127,6 @@ const profile = reactive({
lang: $i.lang, lang: $i.lang,
isBot: $i.isBot, isBot: $i.isBot,
isCat: $i.isCat, isCat: $i.isCat,
showTimelineReplies: $i.showTimelineReplies,
}); });
watch(() => profile, () => { watch(() => profile, () => {
@ -151,7 +150,7 @@ while (fields.value.length < 4) {
addField(); addField();
} }
function deleteField(index: number) { function deleteField(index: number) {
fields.value.splice(index, 1); fields.value.splice(index, 1);
} }
@ -176,7 +175,6 @@ function save() {
lang: profile.lang || null, lang: profile.lang || null,
isBot: !!profile.isBot, isBot: !!profile.isBot,
isCat: !!profile.isCat, isCat: !!profile.isCat,
showTimelineReplies: !!profile.showTimelineReplies,
}); });
claimAchievement('profileFilled'); claimAchievement('profileFilled');
if (profile.name === 'syuilo' || profile.name === 'しゅいろ') { if (profile.name === 'syuilo' || profile.name === 'しゅいろ') {