From aa8b6eb9194d8d768e0f25faf10466527de8d3f2 Mon Sep 17 00:00:00 2001 From: Szymon Mysiak Date: Wed, 25 Mar 2026 13:16:39 +0100 Subject: [PATCH 1/3] fix --- src/apm/Page.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/apm/Page.ts b/src/apm/Page.ts index d542e594..1efcbe2a 100644 --- a/src/apm/Page.ts +++ b/src/apm/Page.ts @@ -106,7 +106,7 @@ module ProcessOut { ContextImpl.context.page.render(APMViewError, { title: "Unable to connect", - message: "An unexpected error occurred. We're working to fix this issue, please check back later or contact support if you need assistance.", + message: message || "An unexpected error occurred. We're working to fix this issue, please check back later or contact support if you need assistance.", hideRefresh: true }) } From d23ad205c47be1f1131e8b968cf1528957a47f5f Mon Sep 17 00:00:00 2001 From: Szymon Mysiak Date: Thu, 26 Mar 2026 18:13:08 +0100 Subject: [PATCH 2/3] v1.8.7 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 8ea841f3..17a90cd5 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "processout.js", - "version": "1.8.6", + "version": "1.8.7", "description": "ProcessOut.js is a JavaScript library for ProcessOut's payment processing API.", "scripts": { "build:processout": "tsc -p src/processout && uglifyjs --compress --keep-fnames --ie8 dist/processout.js -o dist/processout.js", From 17c50c72fc7c6968a9863ff6abd1c3d62b5ae8e4 Mon Sep 17 00:00:00 2001 From: Szymon Mysiak Date: Thu, 26 Mar 2026 18:25:35 +0100 Subject: [PATCH 3/3] fix --- src/apm/Page.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/apm/Page.ts b/src/apm/Page.ts index 1efcbe2a..99707b72 100644 --- a/src/apm/Page.ts +++ b/src/apm/Page.ts @@ -85,7 +85,7 @@ module ProcessOut { this.criticalFailure({ code: data.error.code, message: data.error.message, - title: "Unable to connect", + title: "Payment Failed", }) }, }) @@ -105,7 +105,7 @@ module ProcessOut { }) ContextImpl.context.page.render(APMViewError, { - title: "Unable to connect", + title: title || "Unable to connect", message: message || "An unexpected error occurred. We're working to fix this issue, please check back later or contact support if you need assistance.", hideRefresh: true })