Skip to content
This repository has been archived by the owner on Dec 12, 2024. It is now read-only.

Commit

Permalink
fix/http-client (#31)
Browse files Browse the repository at this point in the history
Co-authored-by: Ethan Lee <125412902+ethan-tbd@users.noreply.github.com>
  • Loading branch information
mistermoe and ethanwlee authored May 8, 2024
1 parent c3a372c commit 1121c33
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/src/http_client/tbdex_http_client.dart
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ class TbdexHttpClient {
if (endpoint.isEmpty) {
throw Exception('no service endpoints found');
}
return 'http://${endpoint[0]}';
return endpoint[0];
}

static Future<String> _generateRequestToken(
Expand Down

0 comments on commit 1121c33

Please sign in to comment.