diff --git a/Anime New Season Checker.jar b/Anime New Season Checker.jar
index 1ea451f..5e107ae 100644
Binary files a/Anime New Season Checker.jar and b/Anime New Season Checker.jar differ
diff --git a/README.md b/README.md
index f950f70..e6ff5b4 100644
--- a/README.md
+++ b/README.md
@@ -19,7 +19,8 @@ Before opening the .jar file open the "list.txt" file and add your anime titles
2) Only use website URLs from [IMDB](https://www.imdb.com).
3) Use only correctly formatted URLS from IMDB after "source:".
4) The .jar file and the "list.txt" file need to be in the same directory.
-5) **Follow the examples below.**
+5) If the program unexpectedly doesn't work anymore, try using a different IP address.
+6) **Follow the examples below.**
## How does it work?
After you entered a season number you need to click the search button.
diff --git a/src/ansc/ANSChecker.java b/src/ansc/ANSChecker.java
index b3d7127..a07eded 100644
--- a/src/ansc/ANSChecker.java
+++ b/src/ansc/ANSChecker.java
@@ -274,7 +274,7 @@ private void check() {
yearData = website.select("#browse-episodes-year.ipc-simple-select__input").text();
yearData = yearData.replaceAll("[^0-9]", "");
} else {
- yearData = website.select("a.ipc-btn div.ipc-btn__text").text();
+ yearData = website.select("a.ipc-btn span.ipc-btn__text").text();
yearData = yearData.replaceAll("[^0-9]", "");
yearData = yearData.substring(yearData.length() - 4);
}