Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Sonarr/commit/492b11451039ae1e622e82468b75e8c615eb4d12 You should set ROOT_URL correctly, otherwise the web may not work correctly.

Added rarbg error code for unknown series.

pull/552/head v2.0.0.3357
Taloth Saldono 10 years ago
parent 55412968e0
commit 492b114510

@ -31,7 +31,7 @@ namespace NzbDrone.Core.Indexers.Rarbg
if (jsonResponse.Resource.error_code.HasValue)
{
if (jsonResponse.Resource.error_code == 20)
if (jsonResponse.Resource.error_code == 20 || jsonResponse.Resource.error_code == 8)
{
// No results found
return results;

Loading…
Cancel
Save