Skip to content

Commit

Permalink
Merge pull request #28 from FaFre/fix-uri-port
Browse files Browse the repository at this point in the history
Fixed create connect Url port
  • Loading branch information
jamiewest authored Dec 12, 2020
2 parents 1bd0936 + c7257aa commit 51cba40
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/src/http_connection.dart
Original file line number Diff line number Diff line change
Expand Up @@ -454,11 +454,12 @@ class HttpConnection implements Connection {
return Uri(
scheme: uri.scheme,
host: uri.host,
port: uri.port,
path: uri.path,
fragment: uri.fragment,
queryParameters: <String, dynamic>{
...uri.queryParameters,
...{ 'id': connectionToken },
...{'id': connectionToken},
},
).toString();
}
Expand Down

0 comments on commit 51cba40

Please sign in to comment.