mirror of https://github.com/lidarr/Lidarr
SabQueueItem ParseResult will trim off duplicate before parsing.
This commit is contained in:
parent
934d9a92fa
commit
dc4f5e48f3
|
@ -24,7 +24,7 @@ namespace NzbDrone.Core.Model.Sabnzbd
|
|||
set
|
||||
{
|
||||
_title = value;
|
||||
ParseResult = Parser.ParseTitle(value);
|
||||
ParseResult = Parser.ParseTitle(value.Replace("DUPLICATE / ", String.Empty));
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue