Skip to content

Commit

Permalink
- apply blacklist and abo filters
Browse files Browse the repository at this point in the history
- fixes #744
  • Loading branch information
derreisende77 committed Sep 24, 2024
1 parent 4239261 commit 328f10b
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/main/java/mediathek/mainwindow/MediathekGui.java
Original file line number Diff line number Diff line change
Expand Up @@ -238,6 +238,12 @@ public MediathekGui() {
daten.getListeFilme().clear(); // sonst wird evtl. nur eine Diff geladen
daten.getFilmeLaden().loadFilmlist("", false);
logger.info("Auto DL and Quit: Filmlist update done.");
logger.info("Auto DL and Quit: Loading Abos...");
daten.getListeAbo().setAboFuerFilm(daten.getListeFilme(), false);
logger.info("Auto DL and Quit: Loading Abos done.");
logger.info("Auto DL and Quit: Applying Blacklist...");
daten.getListeBlacklist().filterListe();
logger.info("Auto DL and Quit: Applying Blacklist...done.");
logger.info("Auto DL and Quit: Starting all downloads...");
SwingUtilities.invokeAndWait(() -> tabDownloads.starten(true));
return true;
Expand Down

0 comments on commit 328f10b

Please sign in to comment.