Skip to content

Commit 0465e74

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

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

packages/frontend/src/pages/settings/profile.vue

+1-3
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,6 @@ const profile = reactive({
127127
lang: $i.lang,
128128
isBot: $i.isBot,
129129
isCat: $i.isCat,
130-
showTimelineReplies: $i.showTimelineReplies,
131130
});
132131
133132
watch(() => profile, () => {
@@ -151,7 +150,7 @@ while (fields.value.length < 4) {
151150
addField();
152151
}
153152
154-
function deleteField(index: number) {
153+
function deleteField(index: number) {
155154
fields.value.splice(index, 1);
156155
}
157156
@@ -176,7 +175,6 @@ function save() {
176175
lang: profile.lang || null,
177176
isBot: !!profile.isBot,
178177
isCat: !!profile.isCat,
179-
showTimelineReplies: !!profile.showTimelineReplies,
180178
});
181179
claimAchievement('profileFilled');
182180
if (profile.name === 'syuilo' || profile.name === 'しゅいろ') {

0 commit comments

Comments
 (0)