Fixed the crash (TypeError: Cannot read properties of undefined (read…#101
Merged
AshleyDawson merged 1 commit intoJul 6, 2026
Conversation
…ing 'summary')) when loading linked Jira issues that belong to an epic.
Reviewer's guide (collapsed on small PRs)Reviewer's GuideJira app integration crash fix by making epic summary field access safe and limiting Jira search results to include the summary field, plus a manifest version bump. Sequence diagram for updated Jira epic summary retrievalsequenceDiagram
participant listLinkedIssues
participant jiraRequest
participant JiraAPI
listLinkedIssues->>jiraRequest: jiraRequest(client, { endpoint: /search/jql?jql=epicJql&fields=summary })
jiraRequest->>JiraAPI: GET /search/jql?jql=epicJql&fields=summary
JiraAPI-->>jiraRequest: SearchIssues (issues with fields.summary)
jiraRequest-->>listLinkedIssues: SearchIssues
listLinkedIssues->>listLinkedIssues: reduce epics, set epicName = epic.fields.summary
alt [epic or fields missing]
listLinkedIssues->>listLinkedIssues: epicName = undefined (safe access epic.fields?.summary)
end
File-Level Changes
Tips and commandsInteracting with Sourcery
Customizing Your ExperienceAccess your dashboard to:
Getting Help
|
There was a problem hiding this comment.
Hey - I've left some high level feedback:
- Consider URL-encoding
epicJqlbefore interpolating it into the/search/jqlendpoint, as special characters in the JQL could break the request or lead to unexpected behavior.
Prompt for AI Agents
Please address the comments from this code review:
## Overall Comments
- Consider URL-encoding `epicJql` before interpolating it into the `/search/jql` endpoint, as special characters in the JQL could break the request or lead to unexpected behavior.Help me be more useful! Please click 👍 or 👎 on each comment and I'll use the feedback to improve your reviews.
djgadd
approved these changes
Jul 6, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Fix for: https://linear.app/deskpro/issue/SR-262/jira-app-integration-fails-to-load-on-specific-ticket-due-to
Summary by Sourcery
Prevent Jira app integration from crashing when loading linked issues for tickets with epics missing summary data.
Bug Fixes:
Build: