SabQueueItem ParseResult will trim off duplicate before parsing.

This commit is contained in:
Mark McDowall 2012-01-21 20:06:17 -08:00
parent 934d9a92fa
commit dc4f5e48f3
1 changed files with 1 additions and 1 deletions

View File

@ -24,7 +24,7 @@ namespace NzbDrone.Core.Model.Sabnzbd
set set
{ {
_title = value; _title = value;
ParseResult = Parser.ParseTitle(value); ParseResult = Parser.ParseTitle(value.Replace("DUPLICATE / ", String.Empty));
} }
} }