diff --git a/bahnplan.web/Pages/Trip.cshtml.cs b/bahnplan.web/Pages/Trip.cshtml.cs index b9b6717..055cdba 100644 --- a/bahnplan.web/Pages/Trip.cshtml.cs +++ b/bahnplan.web/Pages/Trip.cshtml.cs @@ -37,8 +37,10 @@ namespace bahnplan.web.Pages { return; } - if (!db.Legs.Any(p => p.TripId == int.Parse(Request.Query["id"]))) + if (!db.Legs.Any(p => p.TripId == int.Parse(Request.Query["id"]))) { RedirToIndex = true; + return; + } Legs = db.Legs.Where(p => p.TripId == int.Parse(Request.Query["id"])).OrderBy(p => p.DepTime).ToList(); User = db.Users.First(p => p.UserId == Legs.First().UserId).Username;