diff --git a/GermanApp/Presentation/Controllers/StoryController.cs b/GermanApp/Presentation/Controllers/StoryController.cs index 32f9362..21b66c0 100644 --- a/GermanApp/Presentation/Controllers/StoryController.cs +++ b/GermanApp/Presentation/Controllers/StoryController.cs @@ -100,8 +100,8 @@ public class StoryController : ControllerBase if (!segments.Any()) { - _logger.LogWarning("No story segments found for level {LevelId}", levelId); - return NotFound(); + _logger.LogInformation("No story segments found for level {LevelId}", levelId); + return Ok(new List()); // Return empty list instead of NotFound } return Ok(segments);