urlimages fix

This commit is contained in:
2026-01-27 19:45:20 -05:00
parent b17c656a22
commit 6b1d8e5d35

View File

@@ -93,7 +93,7 @@ public class ProductSummaryDto {
public String getBuyShortUrl() { return buyShortUrl; } public String getBuyShortUrl() { return buyShortUrl; }
public void setBuyShortUrl(String buyShortUrl) { this.buyShortUrl = buyShortUrl; } public void setBuyShortUrl(String buyShortUrl) { this.buyShortUrl = buyShortUrl; }
public String getImageUrl() { return imageUrl; } public String getImageUrl() { return UrlUtils.toHttps(imageUrl); }
public void setImageUrl(String imageUrl) { this.imageUrl = imageUrl; } public void setImageUrl(String imageUrl) { this.imageUrl = imageUrl; }
} }