Skip to content

Commit

Permalink
fix deferred deletion error
Browse files Browse the repository at this point in the history
  • Loading branch information
flogross89 committed Jan 23, 2025
1 parent 9eaedae commit 105f155
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -4235,7 +4235,7 @@ export class FwsCore {
// Delete associated deferred procedure
for (const [deferredKey, _] of ewdDeferredEntries) {
if (EcamDeferredProcedures[deferredKey].fromAbnormalProcs.includes(key)) {
this.activeDeferredProceduresList.delete(key);
this.activeDeferredProceduresList.delete(deferredKey);
}
}
}
Expand Down

0 comments on commit 105f155

Please sign in to comment.