Skip to content

Commit

Permalink
Fix parameter escaping
Browse files Browse the repository at this point in the history
  • Loading branch information
andreasvettefors committed Feb 12, 2025
1 parent 2fcb27a commit 395927e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions mobilesdk/src/main/res/values/html_templates.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<script src=\"%1$s\"></script>
<script language=\"javascript\">
var parameters = {
integration: \"App"\,
integration: \"App\",
container: \"checkin\",
onConsumerIdentified: function(consumerIdentifiedEvent) {
swedbankpaysdk.onConsumerProfileRefAvailable(consumerIdentifiedEvent.consumerProfileRef);
Expand Down Expand Up @@ -43,7 +43,7 @@
<script src=\"%1$s\"></script>
<script language="javascript">
var parameters = {
integration: \"App"\,
integration: \"App\",
container: \"checkout\",
onError: function(error) {
swedbankpaysdk.onPaymentError(JSON.stringify(error));
Expand Down Expand Up @@ -72,7 +72,7 @@
window.onload = function () {

var parameters = {
integration: \"App"\,
integration: \"App\",
container: {
checkout: \"checkout\"
},
Expand Down

0 comments on commit 395927e

Please sign in to comment.