mirror of
https://github.com/AntennaPod/AntennaPod.git
synced 2025-01-31 02:44:53 +01:00
Merge pull request #685 from mfietz/issues/684-detect-feed-media-change
Fix issue where feed media attributes did not get updated
This commit is contained in:
commit
d280a32c23
@ -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…
x
Reference in New Issue
Block a user