Skip to content

Commit

Permalink
Merge pull request #41 from asymworks/patch-1
Browse files Browse the repository at this point in the history
Fix typo in Sonarr getShowFileByPath
  • Loading branch information
revenz authored Aug 13, 2024
2 parents 73e09b4 + a109600 commit 0f3bcd7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Scripts/Shared/Sonarr.js
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ export class Sonarr
let sp = x.path.toLowerCase();
if (!sp)
return false;
return sp.includes(path);
return sp.includes(cp);
});
if (showfile?.length)
{
Expand Down

0 comments on commit 0f3bcd7

Please sign in to comment.