Fixed feeditem date update

Bug introduced in d88e1202b1
This commit is contained in:
ByteHamster 2019-11-15 15:25:36 +01:00
parent d3577985f9
commit 5f7a11a865
1 changed files with 1 additions and 1 deletions

View File

@ -185,7 +185,7 @@ public class FeedItem extends FeedComponent implements ShownotesProvider, ImageR
if (other.link != null) {
link = other.link;
}
if (other.pubDate != null && other.pubDate.equals(pubDate)) {
if (other.pubDate != null && !other.pubDate.equals(pubDate)) {
pubDate = other.pubDate;
}
if (other.media != null) {