mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-17 21:25:39 -04:00
Fixed: Remove disambiguation from search
This commit is contained in:
@@ -9,11 +9,11 @@ namespace NzbDrone.Core.IndexerSearch.Definitions
|
||||
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})]";
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user