style(backend): fix all eslint errors (#9967)

This commit is contained in:
Kagami Sascha Rosylight 2023-02-17 02:56:59 +01:00 committed by GitHub
parent 7c5fc2c423
commit 8f9ce23e52
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
9 changed files with 11 additions and 12 deletions

View file

@ -22,7 +22,7 @@ export class EmojiEntityService {
src: Emoji['id'] | Emoji,
opts: { omitHost?: boolean; omitId?: boolean; withUrl?: boolean; } = { omitHost: true, omitId: true, withUrl: true },
): Promise<Packed<'Emoji'>> {
opts = { omitHost: true, omitId: true, withUrl: true, ...opts }
opts = { omitHost: true, omitId: true, withUrl: true, ...opts };
const emoji = typeof src === 'object' ? src : await this.emojisRepository.findOneByOrFail({ id: src });