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

Commit

Permalink
remove explicitly adding protocol scheme to service endpoint
Browse files Browse the repository at this point in the history
Co-Authored-By: Ethan Lee <[email protected]>
  • Loading branch information
mistermoe and ethanwlee committed May 8, 2024
1 parent c3a372c commit 46d19c4
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 46d19c4

Please sign in to comment.