We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fc2e3aa commit c7c8754Copy full SHA for c7c8754
package.json
@@ -1,5 +1,5 @@
1
{
2
- "version": "5.2.3",
+ "version": "5.2.4",
3
"license": "AGPL-3.0",
4
"main": "dist/index.js",
5
"typings": "dist/index.d.ts",
src/queue.ts
@@ -105,7 +105,8 @@ export const syncQueue = async (
105
// }
106
107
if (action as ActionMessageV2) { // make it easier to process by moving the id to their objects
108
- action.campaign.id = action.campaignId;
+ if (action.campaign)
109
+ action.campaign.id = action.campaignId;
110
if (action.action)
111
action.action.id = action.actionId;
112
if (action.org)
0 commit comments