We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dc971d6 commit 21a6359Copy full SHA for 21a6359
src/plus/integrations/providers/jira.ts
@@ -332,7 +332,7 @@ export class JiraIntegration extends IssueIntegration<IssueIntegrationId.Jira> {
332
const projects = this._projects.get(projectKey);
333
if (projects == null) {
334
this._projects.set(projectKey, [project]);
335
- } else {
+ } else if (!projects.some(p => p.id === project.id)) {
336
projects.push(project);
337
}
338
0 commit comments