Skip to content

Commit ea19e4a

Browse files
committed
Enhancement: Fix dispose check in presenter webview and update changelog for version 0.0.84
1 parent 0e811f1 commit ea19e4a

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Change Log
22

3+
## [0.0.84] - 2025-03-18
4+
5+
- Fix in dispose check on the presenter webview
6+
37
## [0.0.83] - 2025-03-18
48

59
- [#64](https://github.com/estruyf/vscode-demo-time/issues/64): Slide list spacing improvements

src/presenterView/PresenterView.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -129,6 +129,10 @@ export class PresenterView {
129129
}
130130

131131
public static async postMessage(command: string, payload: any) {
132+
if (PresenterView.isDisposed) {
133+
return;
134+
}
135+
132136
PresenterView.webview?.webview.postMessage({
133137
command,
134138
payload,

0 commit comments

Comments
 (0)