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?
This commit is contained in:
Luke Else 2022-01-04 23:26:41 +00:00
parent 5a2f109e65
commit b61b767194

View File

@ -130,6 +130,8 @@ namespace EFB.Controllers
ResponseModel<List<PollResponse>> responsePoll = await pollingRequest;
//put request returns JSON that cannot be serialised by default
Console.WriteLine(responsePoll);
}