mirror of
https://github.com/Readarr/Readarr
synced 2026-02-25 16:11:36 +01:00
Fixed: Remove disambiguation from search
This commit is contained in:
parent
dbba39c487
commit
31cad994ba
1 changed files with 2 additions and 2 deletions
|
|
@ -9,11 +9,11 @@ public class BookSearchCriteria : SearchCriteriaBase
|
|||
public string BookIsbn { get; set; }
|
||||
public string Disambiguation { get; set; }
|
||||
|
||||
public string BookQuery => GetQueryTitle($"{BookTitle}{(Disambiguation.IsNullOrWhiteSpace() ? string.Empty : $"+{Disambiguation}")}");
|
||||
public string BookQuery => GetQueryTitle($"{BookTitle}");
|
||||
|
||||
public override string ToString()
|
||||
{
|
||||
return $"[{Author.Name} - {BookTitle}{(Disambiguation.IsNullOrWhiteSpace() ? string.Empty : $" ({Disambiguation})")} ({BookYear})]";
|
||||
return $"[{Author.Name} - {BookTitle} ({BookYear})]";
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue