HomeFLix now shows the plot for each episode of a series

* added episode plot support
* fixed omdb api search not working correctly
This commit is contained in:
Jannik
2018-04-29 14:21:19 +02:00
parent 391ef59f70
commit 74e8783082
6 changed files with 484 additions and 193 deletions

View File

@ -215,7 +215,7 @@ public class MainWindowController {
private boolean autoplay = false;
private final String version = "0.7.0";
private final String buildNumber = "151";
private final String buildNumber = "155";
private final String versionName = "toothless dragon";
private String btnStyle;
private String color;
@ -482,7 +482,7 @@ public class MainWindowController {
last = indexTable - 1;
next = indexTable + 1;
if (currentTableFilm.getCached() || dbController.searchCache(getCurrentStreamUrl())) {
if (currentTableFilm.getCached() || dbController.searchCacheByURL(getCurrentStreamUrl())) {
LOGGER.info("loading from cache: " + getCurrentTitle());
dbController.readCache(getCurrentStreamUrl());
} else {