File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -616,6 +616,7 @@ function continue_paymentfunction() {
616
616
offlineclass = ( glob_offline === true ) ? " br_offline" : "" ,
617
617
pendingclass = ( ispending === true && monitored === true && requesttype == "local" ) ? "ispending" : "" ,
618
618
has_xmr_ia = ( xmr_ia == address ) ? false : xmr_ia ,
619
+ showqr = ( "showqr" in gets ) ? true : false ,
619
620
extend_data = {
620
621
"uoa" : uoa ,
621
622
"amount" : amount ,
@@ -647,7 +648,8 @@ function continue_paymentfunction() {
647
648
"xmr_ia" : has_xmr_ia ,
648
649
"monitored" : monitored ,
649
650
"coinsettings" : coinsettings ,
650
- "dataobject" : dataobject
651
+ "dataobject" : dataobject ,
652
+ "showqr" : showqr
651
653
} ,
652
654
extend_helper_data = {
653
655
"socket_list" : socket_list ,
@@ -925,7 +927,9 @@ function proceed_pf(error) {
925
927
"data-lnd" : lndstatus
926
928
} ) ;
927
929
if ( request . isrequest === true ) {
928
- add_flip ( ) ;
930
+ if ( request . showqr ) { } else {
931
+ add_flip ( ) ;
932
+ }
929
933
}
930
934
if ( glob_offline === true ) { // no price conversion when app is offline
931
935
rendercurrencypool ( {
You can’t perform that action at this time.
0 commit comments