Skip to content

Commit

Permalink
fix: null check for frame in FrameManager (#7773)
Browse files Browse the repository at this point in the history
Issues: #7749
  • Loading branch information
OrKoN committed Nov 15, 2021
1 parent fc94a28 commit 23ee295
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/common/FrameManager.ts
Expand Up @@ -449,7 +449,7 @@ export class FrameManager extends EventEmitter {
}
}
const context = new ExecutionContext(
frame._client || this._client,
frame?._client || this._client,
contextPayload,
world
);
Expand Down

0 comments on commit 23ee295

Please sign in to comment.