Fix issue where feed media attributes did not get updated
This commit is contained in:
parent
d1d0013c67
commit
b4d8b849a0
|
@ -135,8 +135,8 @@ public class FeedItem extends FeedComponent implements ShownotesProvider, Flattr
|
|||
if (other.media != null) {
|
||||
if (media == null) {
|
||||
setMedia(other.media);
|
||||
} else if (media.compareWithOther(other)) {
|
||||
media.updateFromOther(other);
|
||||
} else if (media.compareWithOther(other.media)) {
|
||||
media.updateFromOther(other.media);
|
||||
}
|
||||
}
|
||||
if (other.paymentLink != null) {
|
||||
|
|
Loading…
Reference in New Issue