Skip to content

Commit

Permalink
Revert "- remove failed downloads automatically from seen history"
Browse files Browse the repository at this point in the history
This reverts commit 8237d94.
  • Loading branch information
derreisende77 committed Oct 18, 2023
1 parent 40e4525 commit 45adc56
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 10 deletions.
1 change: 0 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@
- **FEATURE(Linux):** Dark Mode Erkennung funktioniert nun auch mit GNOME. Danke an @swsnr!
- **FEATURE(Linux):** Die Fensterdekorationen der Windows/macOS-Versionen werden nun auch unter Linux verwendet.
- **FEATURE:** Das Nachladen von fehlenden Filmgrößen kann in den *Einstellungen/Aufzeichnen und Abspielen/Download* abgeschaltet werden.
- **FEATURE:** Fehlerhafte Downloads werden nun automatisch aus der Gesehen Datenbank entfernt.

# **14.0.0**
- Es wird nun Java 20 verwendet.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
import mediathek.config.Konstanten;
import mediathek.controller.MVBandwidthCountingInputStream;
import mediathek.controller.ThrottlingInputStream;
import mediathek.controller.history.SeenHistoryController;
import mediathek.daten.DatenDownload;
import mediathek.gui.dialog.DialogContinueDownload;
import mediathek.gui.dialog.MeldungDownloadfehler;
Expand Down Expand Up @@ -258,14 +257,6 @@ private void downloadContent(InputStream inputStream) throws IOException {
} else {
//Anzeige ändern - bei Fehler fehlt der Eintrag
start.status = Start.STATUS_ERR;
//in case of error remove seen indication
var film = datenDownload.film;
if (film != null) {
logger.trace("Removing errorneous download from history");
try (var historyController = new SeenHistoryController()) {
historyController.markUnseen(film);
}
}
}
}
}
Expand Down

0 comments on commit 45adc56

Please sign in to comment.