chore: apply linting

This commit is contained in:
0xsysr3ll
2026-04-25 09:38:08 +02:00
parent d67ce85d96
commit 70ea488c19
3 changed files with 4 additions and 3 deletions

View File

@@ -188,7 +188,9 @@ function formatComment(candidates) {
'',
'A maintainer will review this. If this is **not** a duplicate, no action is needed.',
'',
`<!-- duplicate-bot: candidates=${candidates.map((c) => c.number).join(',')} -->`
`<!-- duplicate-bot: candidates=${candidates
.map((c) => c.number)
.join(',')} -->`
);
return lines.join('\n');

View File

@@ -450,7 +450,6 @@ class SonarrAPI extends ServarrBase<{
});
}
};
}
export default SonarrAPI;

View File

@@ -7,7 +7,7 @@ import { MediaStatus, MediaType } from '@server/constants/media';
import { getRepository } from '@server/datasource';
import Media from '@server/entity/Media';
import { Watchlist } from '@server/entity/Watchlist';
import { getSettings, MetadataProviderType } from '@server/lib/settings';
import { MetadataProviderType, getSettings } from '@server/lib/settings';
import logger from '@server/logger';
import { mapTvResult } from '@server/models/Search';
import { mapSeasonWithEpisodes, mapTvDetails } from '@server/models/Tv';