mirror of
https://github.com/Jackett/Jackett
synced 2025-02-24 07:10:44 +00:00
NCore: fix title generation (#3270)
This commit is contained in:
parent
8bc5d813b7
commit
11c7015c17
1 changed files with 1 additions and 2 deletions
|
@ -227,7 +227,6 @@ namespace Jackett.Common.Indexers
|
||||||
description = release.Description.Split('[');
|
description = release.Description.Split('[');
|
||||||
description[1] = "[" + description[1];
|
description[1] = "[" + description[1];
|
||||||
}
|
}
|
||||||
else
|
|
||||||
|
|
||||||
release.Title = (description[0].Trim() + "." + seasonep.Trim() + "." + releasedata.Trim('.')).Replace(' ', '.');
|
release.Title = (description[0].Trim() + "." + seasonep.Trim() + "." + releasedata.Trim('.')).Replace(' ', '.');
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue