This commit is contained in:
かっこかり 2024-12-22 13:58:15 +09:00 committed by GitHub
commit fc39d75c17
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 12 additions and 10 deletions

View File

@ -18,7 +18,7 @@
- Fix: ユーザーのプロフィール画面をアドレス入力などで直接表示した際に概要タブの描画に失敗する問題の修正( #15032 ) - Fix: ユーザーのプロフィール画面をアドレス入力などで直接表示した際に概要タブの描画に失敗する問題の修正( #15032 )
- Fix: 起動前の疎通チェックが機能しなくなっていた問題を修正 - Fix: 起動前の疎通チェックが機能しなくなっていた問題を修正
(Cherry-picked from https://activitypub.software/TransFem-org/Sharkey/-/merge_requests/737) (Cherry-picked from https://activitypub.software/TransFem-org/Sharkey/-/merge_requests/737)
- Fix: `/api/pages/update`にて`name`を指定せずにリクエストするとエラーが発生する問題を修正
## 2024.11.0 ## 2024.11.0

View File

@ -102,15 +102,17 @@ export default class extends Endpoint<typeof meta, typeof paramDef> { // eslint-
} }
} }
await this.pagesRepository.findBy({ if (ps.name != null) {
id: Not(ps.pageId), await this.pagesRepository.findBy({
userId: me.id, id: Not(ps.pageId),
name: ps.name, userId: me.id,
}).then(result => { name: ps.name,
if (result.length > 0) { }).then(result => {
throw new ApiError(meta.errors.nameAlreadyExists); if (result.length > 0) {
} throw new ApiError(meta.errors.nameAlreadyExists);
}); }
});
}
await this.pagesRepository.update(page.id, { await this.pagesRepository.update(page.id, {
updatedAt: new Date(), updatedAt: new Date(),