Skip to content

Commit

Permalink
Merge pull request #654 from breez/ok300-fix-lnurl-calls
Browse files Browse the repository at this point in the history
Call correct arg when handling LNURL
  • Loading branch information
ok300 authored Oct 5, 2023
2 parents 42e9211 + 4005338 commit 8180e13
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/handlers/input_handler.dart
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ class InputHandler extends Handler {
parsedInput is InputType_LnUrlWithdraw ||
parsedInput is InputType_LnUrlAuth ||
parsedInput is InputType_LnUrlError) {
return handleLNURL(context, firstPaymentItemKey, parsedInput.btcAddressData);
return handleLNURL(context, firstPaymentItemKey, parsedInput.data);
} else if (parsedInput is InputType_NodeId) {
return handleNodeID(context, parsedInput.nodeId);
}
Expand Down

0 comments on commit 8180e13

Please sign in to comment.