@xuda.io/xuda-worker-bundle-min 1.3.1055 → 1.3.1056
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/index.js +4 -3
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -8765,9 +8765,10 @@ func.events.execute = async function (
|
|
|
8765
8765
|
};
|
|
8766
8766
|
|
|
8767
8767
|
for await (let [key, val] of Object.entries(_payload)) {
|
|
8768
|
-
if (key.substring(0, 7) !== "xu-exp:") {
|
|
8769
|
-
|
|
8770
|
-
|
|
8768
|
+
// if (key.substring(0, 7) !== "xu-exp:") {
|
|
8769
|
+
const new_key = key.replaceAll("xu-exp:", ""); //key.substring(0, 7) === "xu-exp:" ? key.substring(7): key
|
|
8770
|
+
payload[new_key] = await get_payload_property_value(new_key);
|
|
8771
|
+
// }
|
|
8771
8772
|
}
|
|
8772
8773
|
}
|
|
8773
8774
|
|