forgot to use variable

This commit is contained in:
cxxpxr 2021-04-02 14:27:36 -04:00 committed by GitHub
parent 0513b54e55
commit 452c36015a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -204,7 +204,7 @@ namespace LightReflectiveMirror
else
{
relayServerList?.Clear();
relayServerList = JsonConvert.DeserializeObject<RelayServerInfo[]>(webRequest.downloadHandler.text).ToList();
relayServerList = JsonConvert.DeserializeObject<RelayServerInfo[]>(result).ToList();
serverListUpdated?.Invoke();
break;
}
@ -405,4 +405,4 @@ namespace LightReflectiveMirror
public int serverId;
public string serverData;
}
}
}