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:
parent
71749ba8db
commit
10ae5e9d5d
1 changed files with 7 additions and 0 deletions
|
@ -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")
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue