Skip to content

Commit

Permalink
fix FfiUrl toString to asString
Browse files Browse the repository at this point in the history
  • Loading branch information
kumulynja committed Jul 22, 2024
1 parent 83fbb00 commit 3a917b0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/receive/v2.dart
Original file line number Diff line number Diff line change
Expand Up @@ -297,7 +297,7 @@ class PayjoinProposal extends FfiV2PayjoinProposal {
try {
final res = await FfiV2PayjoinProposal.extractV2Req(ptr: this);
final request =
Request(await Url.fromString(res.$1.$1.toString()), res.$1.$2);
Request(await Url.fromString(res.$1.$1.asString()), res.$1.$2);
return (request, ClientResponse._(field0: res.$2.field0));
} on error.PayjoinError catch (e) {
throw mapPayjoinError(e);
Expand Down

0 comments on commit 3a917b0

Please sign in to comment.