mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-06 13:10:43 +00:00
fix(codex): remove redundant abort signal assertion
This commit is contained in:
@@ -171,7 +171,7 @@ function composeAbortSignals(...signals: Array<AbortSignal | undefined>): AbortS
|
||||
return new AbortController().signal;
|
||||
}
|
||||
if (activeSignals.length === 1) {
|
||||
return activeSignals[0]!;
|
||||
return activeSignals[0];
|
||||
}
|
||||
return AbortSignal.any(activeSignals);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user