Sync Additional Comments and Work Notes from Servicenow to Jira fails with error: "invalid return type: com.glide.glideobject.Journal".Issue OOB Additional comments and Work Notes fields are journal fields, but they fail to to sync with Jira commentsCauseThe Comments field in the incident record is of type "Journal" which holds all the comments and not one. The Add Comment action in Jira expects the comment to be a string and not a journal. It adds a single comment to the issue.If one wants to add the latest comment from the record, then one would need to fetch the latest comment from the Journal Type as a string and pass that to the Jira Action.ResolutionWrite a script on the action such that if the action needs the latest comment put the values in an array and pick the latest, or if all the values needed an array of strings needs to be sent. This can be done via a script step.