Don't change playback completion date

Don't change the playback completion date when marking an episode as
"read" or "unread"
This commit is contained in:
Michael Kaiser 2012-10-28 00:03:20 +02:00
parent 3fa2d2a6c5
commit ea52a12ba3

View File

@ -132,11 +132,6 @@ public class FeedItem extends FeedComponent {
this.read = read;
if (media != null) {
media.setPosition(0);
if (read) {
media.setPlaybackCompletionDate(new Date());
} else {
media.setPlaybackCompletionDate(null);
}
}
}