Fix Speicher Database + Coding

This commit is contained in:
Tim
2025-06-22 13:46:53 +02:00
parent 6c0fe6868c
commit 78538954eb

View File

@@ -37,6 +37,6 @@ public class ArticleWithImageModel {
this.stockExpected = article.getStockExpected(); this.stockExpected = article.getStockExpected();
this.category = article.getCategory(); this.category = article.getCategory();
this.rating = article.getRating(); this.rating = article.getRating();
this.image = image.getBase64(); this.image = image == null ? "" : image.getBase64();
} }
} }