strapi-plugin-payone-provider 4.6.16 → 4.6.17
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -52,7 +52,7 @@ const processTransactionStatus = async (strapi, notificationData) => {
|
|
|
52
52
|
try {
|
|
53
53
|
const settings = await getSettings(strapi);
|
|
54
54
|
if (!validateData(notificationData, settings)) {
|
|
55
|
-
|
|
55
|
+
console.log("[Payone TransactionStatus] Validation failed for incoming notification.");
|
|
56
56
|
}
|
|
57
57
|
|
|
58
58
|
const txid = notificationData.txid;
|
|
@@ -60,7 +60,6 @@ const processTransactionStatus = async (strapi, notificationData) => {
|
|
|
60
60
|
|
|
61
61
|
if (!existing) {
|
|
62
62
|
console.log(`[Payone TransactionStatus] Transaction ${txid} not found. Notification ignored.`);
|
|
63
|
-
return;
|
|
64
63
|
}
|
|
65
64
|
|
|
66
65
|
const safeNotification = sanitizeSensitive({ ...notificationData });
|