mozilla / jira-bugzilla-integration

Jira Bugzilla Integration (JBI) - system to sync bugs and issues
Mozilla Public License 2.0
8 stars 22 forks source link

JBI slash escaping some characters when sending summary field data into Jira #989

Closed alexcottner closed 2 months ago

alexcottner commented 2 months ago

JBI is markdown converting the summary field from bugzilla, causing some slash escapes in characters (examples below). But this field should never be markdown as it's plain text.

Bugzilla summary field is: [Foo] Jira summary field becomes: \[Foo\]

Proposed solution: In update_issue_summary, remove markdown_to_jira call. Just truncate if we exceed the max length.