Update src/lib/aggregate-read.ts

Co-authored-by: qodo-code-review[bot] <151058649+qodo-code-review[bot]@users.noreply.github.com>
This commit is contained in:
zenchantlive 2026-02-13 00:01:34 -08:00 committed by GitHub
parent 141ed954bb
commit 264af1fd3b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -3,6 +3,9 @@ import type { ProjectScopeOption } from './project-scope';
import { readIssuesFromDisk } from './read-issues';
function scopeIssueId(projectKey: string, issueId: string): string {
if (issueId.includes('::')) {
return issueId;
}
return `${projectKey}::${issueId}`;
}