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 Dec 21, 2024
1 parent b017822 commit c359b73
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 @@ -1120,7 +1120,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 c359b73

Please sign in to comment.