QFIX: Github migration + few checks (#9244)

Signed-off-by: Andrey Sobolev <haiodo@gmail.com>
This commit is contained in:
Andrey Sobolev
2025-06-16 01:38:10 +07:00
committed by GitHub
parent 0334bd2b30
commit 35dcda4364
9 changed files with 143 additions and 77 deletions
@@ -99,7 +99,7 @@ export abstract class IssueSyncManagerBase {
// Find Assignees and reviewers
const assignees: PersonId[] = []
for (const o of issue.assignees.nodes ?? []) {
for (const o of issue.assignees?.nodes ?? []) {
const acc = await this.provider.getAccount(o)
if (acc !== undefined) {
assignees.push(acc)