You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
An exception is generated when attempting to sparkle a plug-in containing an image that has been configured for a bulk message, i.e. CreateMultiple or UpdateMultiple.
The exception is: 'Message property name 'Target' is not valid on message UpdateMultiple.'
The text was updated successfully, but these errors were encountered:
On investigation I've found that the issue exists within the RegisterImage method of the PluginRegistration.cs.
`
switch (stepAttribute.Message)
{
case "Create":
image.MessagePropertyName = "Id";
break;
case "SetState":
case "SetStateDynamicEntity":
image.MessagePropertyName = "EntityMoniker";
break;
case "Send":
case "DeliverIncoming":
case "DeliverPromote":
image.MessagePropertyName = "EmailId";
break;
default:
image.MessagePropertyName = "Target";
break;
}
`
Making the following change to the switch statement would appear to fix the issue:
An exception is generated when attempting to sparkle a plug-in containing an image that has been configured for a bulk message, i.e. CreateMultiple or UpdateMultiple.
The exception is: 'Message property name 'Target' is not valid on message UpdateMultiple.'
The text was updated successfully, but these errors were encountered: