mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-08-20 21:33:15 -07:00
Changed the title to a contains but the artist still must match,
This commit is contained in:
parent
837572a8cd
commit
f9cf728381
3 changed files with 17 additions and 5 deletions
|
@ -235,7 +235,7 @@ namespace PlexRequests.Services
|
|||
{
|
||||
foreach (var r in results.Directory)
|
||||
{
|
||||
var titleMatch = r.Title.Equals(title, StringComparison.CurrentCultureIgnoreCase);
|
||||
var titleMatch = r.Title.Contains(title);
|
||||
var artistMatch = r.ParentTitle.Equals(artist, StringComparison.CurrentCultureIgnoreCase);
|
||||
if (titleMatch && artistMatch)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue