Skip to content

Commit

Permalink
Merge pull request #25 from kumulynja/fix-super-ptr
Browse files Browse the repository at this point in the history
change super with this
  • Loading branch information
BitcoinZavior authored Jul 20, 2024
2 parents cb0a130 + 3cbab01 commit be86545
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/receive/v2.dart
Original file line number Diff line number Diff line change
Expand Up @@ -84,12 +84,12 @@ class ActiveSession extends FfiActiveSession {
/// The contents of the `&pj=` query parameter including the base64url-encoded public key receiver subdirectory.
/// This identifies a session at the payjoin directory server.
Future<Url> pjUrl() {
final res = FfiActiveSession.pjUrl(ptr: super);
final res = FfiActiveSession.pjUrl(ptr: this);
return Url.fromString(res.asString());
}

PjUriBuilder pjUriBuilder() {
final res = FfiActiveSession.pjUriBuilder(ptr: super);
final res = FfiActiveSession.pjUriBuilder(ptr: this);
return PjUriBuilder(internal: res.internal);
}
}
Expand Down

0 comments on commit be86545

Please sign in to comment.