This commit is contained in:
2025-03-21 20:24:43 +01:00
parent 224398df90
commit f34c9162d4
12427 changed files with 5329941 additions and 373384 deletions

View File

@@ -19,8 +19,13 @@
}, 3000),
checkPaymentStatus = function () {
queryStr = window.location.search;
urlParams = new URLSearchParams(queryStr);
if ( urlParams.get('module') == 'paynow' && urlParams.get('controller') == 'confirmBlik' ) {
queryStr = queryStr.replace('confirmBlik', 'status')
}
$.ajax({
url: 'status' + window.location.search,
url: 'status' + queryStr,
dataType: 'json',
type: 'get',
success: function (message) {
@@ -39,4 +44,4 @@
setTimeout(() => {
redirectToReturn()
}, 60000);
})();
})();