diff --git a/src/Jackett/Indexers/AnimeBytes.cs b/src/Jackett/Indexers/AnimeBytes.cs index e504b5db3..c8478bd2d 100644 --- a/src/Jackett/Indexers/AnimeBytes.cs +++ b/src/Jackett/Indexers/AnimeBytes.cs @@ -114,6 +114,9 @@ namespace Jackett.Indexers // Follow the redirect await FollowIfRedirect(response, LoginUrl, SearchUrl); + if (response.Status == HttpStatusCode.Forbidden) + throw new ExceptionWithConfigData("Failed to login, your IP seems to be blacklisted (shared VPN/seedbox?). Contact the staff to resolve this.", configData); + await ConfigureIfOK(response.Cookies, response.Content != null && response.Content.Contains("/user/logout"), () => { // Their login page appears to be broken and just gives a 500 error.