From 49af65be6eac94f1d78a24f1e8bf2541a208f7df Mon Sep 17 00:00:00 2001
From: Kevin Richter <me@kevinrichter.nl>
Date: Sun, 7 May 2017 18:52:19 +0200
Subject: [PATCH] Fix HorribleSubs search with group constraint (#3719)

---
 sickbeard/providers/horriblesubs.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sickbeard/providers/horriblesubs.py b/sickbeard/providers/horriblesubs.py
index 5aa337357..0ad524f1c 100755
--- a/sickbeard/providers/horriblesubs.py
+++ b/sickbeard/providers/horriblesubs.py
@@ -107,7 +107,7 @@ class HorribleSubsProvider(TorrentProvider):  # pylint: disable=too-many-instanc
                         if not all([title, download_url]):
                             continue
 
-                        item = {'title': title, 'link': download_url, 'size': 333, 'seeders': 1, 'leechers': 1,
+                        item = {'title': '[HorribleSubs] ' + title, 'link': download_url, 'size': 333, 'seeders': 1, 'leechers': 1,
                                 'hash': ''}
 
                         if mode != 'RSS':
-- 
GitLab