Skip to content

Commit

Permalink
change super with this
Browse files Browse the repository at this point in the history
  • Loading branch information
kumulynja committed Jul 20, 2024
1 parent cb0a130 commit 3cbab01
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 3cbab01

Please sign in to comment.