From b61b767194a91bebe5aa0b02f3070ddbd332f77d Mon Sep 17 00:00:00 2001 From: Luke Else Date: Tue, 4 Jan 2022 23:26:41 +0000 Subject: [PATCH] Update RouteController.cs Polling feature still inop, JSON doesn't deserialise becuase the array has no name in the JSON. Could potentially add a name to the start artificially in order to force the JSON to parse? --- Controllers/RouteController.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Controllers/RouteController.cs b/Controllers/RouteController.cs index acd5164..d73ddd3 100644 --- a/Controllers/RouteController.cs +++ b/Controllers/RouteController.cs @@ -130,6 +130,8 @@ namespace EFB.Controllers ResponseModel> responsePoll = await pollingRequest; + + //put request returns JSON that cannot be serialised by default Console.WriteLine(responsePoll); }