Updated Session extensions and Route Contoller

Increased the number of Poll requests and disabled an irrelevant error stating that there was a cyclical struture (Just a Doubly Linked List)
This commit is contained in:
2022-01-27 09:46:38 +00:00
parent 924e25e1c6
commit 3cb2b9c9b5
3 changed files with 7 additions and 3 deletions

View File

@ -88,7 +88,7 @@ namespace EFB.Models
route.Current.Next = route.Arrival;
route.Arrival.Previous = route.Current;
route.Current = null;
route.Current = route.Departure;
return route;
}