From 194ce97abb888ef95f8571b4330514766e7e1828 Mon Sep 17 00:00:00 2001
From: cosote <cosote@gmail.com>
Date: Wed, 13 Jun 2018 08:03:22 +0200
Subject: [PATCH] add missing '/' for for limetorrents rss search

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

diff --git a/sickbeard/providers/limetorrents.py b/sickbeard/providers/limetorrents.py
index 393cd1f7b..c184d36c1 100644
--- a/sickbeard/providers/limetorrents.py
+++ b/sickbeard/providers/limetorrents.py
@@ -65,7 +65,7 @@ class LimeTorrentsProvider(TorrentProvider):  # pylint: disable=too-many-instanc
                                (search_string.decode("utf-8")), logger.DEBUG)
 
                 try:
-                    search_url = (self.urls['rss'], self.urls['search'] + search_string)[mode != 'RSS']
+                    search_url = (self.urls['rss'], self.urls['search'] + search_string + '/')[mode != 'RSS']
 
                     data = self.get_url(search_url, returns='text')
                     if not data:
-- 
GitLab