Skip to content

Commit

Permalink
fix: correct sonarr override rules
Browse files Browse the repository at this point in the history
  • Loading branch information
gauthier-th committed Nov 19, 2024
1 parent 98ecdf1 commit 3c8fb4f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/entity/MediaRequest.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1121,7 +1121,7 @@ export class MediaRequest {

const overrideRuleRepository = getRepository(OverrideRule);
const overrideRules = await overrideRuleRepository.find({
where: { radarrServiceId: sonarrSettings.id },
where: { sonarrServiceId: sonarrSettings.id },
});
const appliedOverrideRules = overrideRules.filter((rule) => {
if (
Expand Down

0 comments on commit 3c8fb4f

Please sign in to comment.