diff --git a/src/Jackett.Common/Indexers/NebulanceAPI.cs b/src/Jackett.Common/Indexers/NebulanceAPI.cs index 01f9ad114..b8b964fda 100644 --- a/src/Jackett.Common/Indexers/NebulanceAPI.cs +++ b/src/Jackett.Common/Indexers/NebulanceAPI.cs @@ -221,6 +221,8 @@ namespace Jackett.Common.Indexers if (response.ContentString != null && response.ContentString.Contains("Invalid params")) throw new Exception("Invalid API Key configured"); + if (response.ContentString != null && response.ContentString.Contains("API is down")) + throw new Exception("NBL API is down at the moment"); char[] delimiters = { ',', ' ', '/', ')', '(', '.', ';', '[', ']', '"', '|', ':' };