Toggle navigation
Toggle navigation
This project
Loading...
Sign in
flutter_package
/
fluttertpc_get
Go to a project
Toggle navigation
Projects
Groups
Snippets
Help
Toggle navigation pinning
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Authored by
Reinaldo
2020-12-07 14:18:57 -0300
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
1826a9f3f263af07dd3f0eb872e57adb5affcdbc
1826a9f3
1 parent
d2aee52c
Fix bug in GetHttpClient._createUri
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
lib/get_connect/http/src/http.dart
lib/get_connect/http/src/http.dart
View file @
1826a9f
...
...
@@ -79,7 +79,7 @@ class GetHttpClient {
}
final
uri
=
Uri
.
parse
(
url
);
if
(
query
!=
null
)
{
uri
.
replace
(
queryParameters:
query
);
return
uri
.
replace
(
queryParameters:
query
);
}
return
uri
;
}
...
...
Please
register
or
login
to post a comment