Showing
1 changed file
with
1 additions
and
1 deletions
... | @@ -43,6 +43,6 @@ public class MyRewardsBannerOfferCollectionViewCell: UICollectionViewCell { | ... | @@ -43,6 +43,6 @@ public class MyRewardsBannerOfferCollectionViewCell: UICollectionViewCell { |
43 | 43 | ||
44 | func configureCell(data: ArticleModel) { | 44 | func configureCell(data: ArticleModel) { |
45 | // Use article's preview image - same visual treatment as campaigns | 45 | // Use article's preview image - same visual treatment as campaigns |
46 | - self.postImageURL = data.img_preview ?? "" | 46 | + self.postImageURL = data._img_preview.isEmpty ? nil : data._img_preview |
47 | } | 47 | } |
48 | } | 48 | } | ... | ... |
-
Please register or login to post a comment