diff --git a/Controllers/QuoteController.cs b/Controllers/QuoteController.cs index d5697a1..829fc2a 100644 --- a/Controllers/QuoteController.cs +++ b/Controllers/QuoteController.cs @@ -387,6 +387,7 @@ public class QuotesController : ControllerBase // Try to find the quote in question Quote? quote = await _db.Quotes .Include(q => q.QuoteCategories) + .Include(q => q.Image) .FirstOrDefaultAsync(q => q.Id == id); // Failed?