Skip to content

Commit 15d820c

Browse files
committed
fix compilation issue with some Unity versions. bump version
1 parent 0b3c586 commit 15d820c

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Assets/Colyseus/Runtime/Colyseus/HTTP.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ public async Task<string> Request(string uriMethod, string uriPath, Dictionary<s
143143
throw new HttpException((int)req.responseCode, errorMessage);
144144
}
145145
}
146-
146+
147147
throw new HttpException((int)req.responseCode, errorMessage);
148148
}
149149
}
@@ -154,7 +154,7 @@ public async Task<string> Request(string uriMethod, string uriPath, Dictionary<s
154154

155155
public string GetRequestURL(string pathWithQueryString)
156156
{
157-
var splittedPath = pathWithQueryString.Split("?");
157+
var splittedPath = pathWithQueryString.Split('?');
158158
var path = splittedPath[0];
159159
var query = (splittedPath.Length > 1) ? splittedPath[1] : "";
160160

Assets/Colyseus/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "io.colyseus.sdk",
3-
"version": "0.15.8",
3+
"version": "0.15.9",
44
"displayName": "Colyseus SDK",
55
"description": "Colyseus Multiplayer SDK for Unity",
66
"unity": "2019.1",

0 commit comments

Comments
 (0)