Make sure release title contains "[HorribleSubs]" (#3947)

* This is needed for things like configuring tag restrictions in Sonarr
This commit is contained in:
CodeMonkey
2018-10-09 15:01:25 -04:00
committed by garfield69
parent 71749ba8db
commit 10ae5e9d5d

View File

@@ -135,6 +135,13 @@ namespace Jackett.Common.Indexers
continue;
}
// Ensure fansub group name is present in the title
// This is needed for things like configuring tag restrictions in Sonarr
if (title.Contains("[HorribleSubs]") == false)
{
title = "[HorribleSubs] " + title;
}
DateTime releasedate;
if (dateStr == "Today")
{