finished getting all users method

This commit is contained in:
Sem van der Hoeven
2020-09-16 13:52:52 +02:00
parent 3307f57f36
commit 60ae9a3716
2 changed files with 14 additions and 6 deletions

View File

@@ -22,7 +22,7 @@ namespace RH_Engine
int counter = 0;
foreach (dynamic d in data)
{
res[counter] = new PC(d.clientinfo.host, d.clientinfo.user);
res[counter] = new PC((string)d.clientinfo.host, (string)d.clientinfo.user);
counter++;
}