From 452c36015a180e6a518ec8fff3a65372e93e9104 Mon Sep 17 00:00:00 2001 From: cxxpxr <60411087+cxxpxr@users.noreply.github.com> Date: Fri, 2 Apr 2021 14:27:36 -0400 Subject: [PATCH] forgot to use variable --- UnityTransport/LightReflectiveMirrorTransport.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/UnityTransport/LightReflectiveMirrorTransport.cs b/UnityTransport/LightReflectiveMirrorTransport.cs index 14e739b..ec02026 100644 --- a/UnityTransport/LightReflectiveMirrorTransport.cs +++ b/UnityTransport/LightReflectiveMirrorTransport.cs @@ -204,7 +204,7 @@ namespace LightReflectiveMirror else { relayServerList?.Clear(); - relayServerList = JsonConvert.DeserializeObject(webRequest.downloadHandler.text).ToList(); + relayServerList = JsonConvert.DeserializeObject(result).ToList(); serverListUpdated?.Invoke(); break; } @@ -405,4 +405,4 @@ namespace LightReflectiveMirror public int serverId; public string serverData; } -} \ No newline at end of file +}