New media files in FeedItems were not handled correctly. Should fix #327

This commit is contained in:
daniel oeh 2013-12-30 00:53:00 +01:00
parent 8bf95b48dc
commit d597b056fb

View File

@ -80,7 +80,7 @@ public class FeedItem extends FeedComponent implements
}
if (other.media != null) {
if (media == null) {
media = other.media;
setMedia(other.media);
} else if (media.compareWithOther(other)) {
media.updateFromOther(other);
}