mirror of
https://github.com/Jackett/Jackett.git
synced 2025-09-26 20:13:07 +02:00
elitetracker: add vostfr to English replacement config option. resolves #6855
This commit is contained in:
@@ -270,6 +270,11 @@ namespace Jackett.Common.Indexers
|
||||
System.Text.RegularExpressions.Regex regex = new Regex("(?i)([\\.\\- ])MULTI([\\.\\- ])");
|
||||
release.Title = regex.Replace(release.Title, "$1" + ReplaceMulti + "$2");
|
||||
}
|
||||
// issue #6855 Replace VOSTFR with ENGLISH
|
||||
if (configData.Vostfr.Value)
|
||||
{
|
||||
release.Title = release.Title.Replace("VOSTFR", "ENGLISH");
|
||||
}
|
||||
|
||||
if (pretime != null)
|
||||
{
|
||||
|
Reference in New Issue
Block a user