1
0
Fork 0
mirror of https://github.com/Jackett/Jackett synced 2025-02-24 15:21:06 +00:00

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")
{