fix(client): プロフィールで設定した情報が削除できない

Fix #10279
This commit is contained in:
syuilo 2023-03-10 18:48:57 +09:00
parent 533fe2d607
commit 787404638a
2 changed files with 12 additions and 5 deletions

View file

@ -134,11 +134,17 @@ function saveFields() {
function save() {
os.apiWithDialog('i/update', {
name: profile.name ?? null,
description: profile.description ?? null,
location: profile.location ?? null,
birthday: profile.birthday ?? null,
lang: profile.lang ?? null,
// null??使
// eslint-disable-next-line @typescript-eslint/prefer-nullish-coalescing
name: profile.name || null,
// eslint-disable-next-line @typescript-eslint/prefer-nullish-coalescing
description: profile.description || null,
// eslint-disable-next-line @typescript-eslint/prefer-nullish-coalescing
location: profile.location || null,
// eslint-disable-next-line @typescript-eslint/prefer-nullish-coalescing
birthday: profile.birthday || null,
// eslint-disable-next-line @typescript-eslint/prefer-nullish-coalescing
lang: profile.lang || null,
isBot: !!profile.isBot,
isCat: !!profile.isCat,
showTimelineReplies: !!profile.showTimelineReplies,