Skip to content

Commit

Permalink
Fixes #31
Browse files Browse the repository at this point in the history
  • Loading branch information
jamiewest committed Jan 6, 2021
1 parent f71eaa3 commit dc767b9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/src/http_connection.dart
Original file line number Diff line number Diff line change
Expand Up @@ -461,7 +461,7 @@ class HttpConnection implements Connection {
host: uri.host,
port: uri.port,
path: uri.path,
fragment: uri.fragment,
fragment: uri.fragment.isNotEmpty ? uri.fragment : null,
queryParameters: <String, dynamic>{
...uri.queryParameters,
...{'id': connectionToken},
Expand Down

0 comments on commit dc767b9

Please sign in to comment.