mirror of
https://github.com/misskey-dev/misskey.git
synced 2026-05-03 10:16:10 +02:00
refactor(backend): 存在確認のfindOneByをexistに置き換え (#11224)
* refactor(backend): 存在確認の`findOneBy`を`exist`に置き換え * cleanup
This commit is contained in:
@@ -44,12 +44,14 @@ export default class extends Endpoint<typeof meta, typeof paramDef> {
|
||||
throw err;
|
||||
});
|
||||
|
||||
const exist = await this.promoReadsRepository.findOneBy({
|
||||
noteId: note.id,
|
||||
userId: me.id,
|
||||
const exist = await this.promoReadsRepository.exist({
|
||||
where: {
|
||||
noteId: note.id,
|
||||
userId: me.id,
|
||||
},
|
||||
});
|
||||
|
||||
if (exist != null) {
|
||||
if (exist) {
|
||||
return;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user