probably fixed the serials

This commit is contained in:
Sem van der Hoeven
2020-09-25 15:26:57 +02:00
4 changed files with 79 additions and 55 deletions

View File

@@ -81,9 +81,9 @@ namespace RH_Engine
public static string GetResponseUuid(string json)
{
dynamic jsonData = JsonConvert.DeserializeObject(json);
if (jsonData.data.status == "ok")
if (jsonData.data.data.status == "ok")
{
return jsonData.data.uuid;
return jsonData.data.data.data.uuid;
}
return null;
}