fix: a few lint problems
This commit is contained in:
parent
1795195097
commit
8d2f655e51
2 changed files with 4 additions and 4 deletions
|
@ -214,7 +214,7 @@ export class NoteEditService implements OnApplicationShutdown {
|
||||||
|
|
||||||
if (!editid) {
|
if (!editid) {
|
||||||
throw new Error('fail');
|
throw new Error('fail');
|
||||||
};
|
}
|
||||||
|
|
||||||
const oldnote = await this.notesRepository.findOneBy({
|
const oldnote = await this.notesRepository.findOneBy({
|
||||||
id: editid,
|
id: editid,
|
||||||
|
@ -222,11 +222,11 @@ export class NoteEditService implements OnApplicationShutdown {
|
||||||
|
|
||||||
if (oldnote == null) {
|
if (oldnote == null) {
|
||||||
throw new Error('no such note');
|
throw new Error('no such note');
|
||||||
};
|
}
|
||||||
|
|
||||||
if (oldnote.userId !== user.id) {
|
if (oldnote.userId !== user.id) {
|
||||||
throw new Error('not the author');
|
throw new Error('not the author');
|
||||||
};
|
}
|
||||||
|
|
||||||
// チャンネル外にリプライしたら対象のスコープに合わせる
|
// チャンネル外にリプライしたら対象のスコープに合わせる
|
||||||
// (クライアントサイドでやっても良い処理だと思うけどとりあえずサーバーサイドで)
|
// (クライアントサイドでやっても良い処理だと思うけどとりあえずサーバーサイドで)
|
||||||
|
|
Loading…
Reference in a new issue