We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0e811f1 commit ea19e4aCopy full SHA for ea19e4a
CHANGELOG.md
@@ -1,5 +1,9 @@
1
# Change Log
2
3
+## [0.0.84] - 2025-03-18
4
+
5
+- Fix in dispose check on the presenter webview
6
7
## [0.0.83] - 2025-03-18
8
9
- [#64](https://github.com/estruyf/vscode-demo-time/issues/64): Slide list spacing improvements
src/presenterView/PresenterView.ts
@@ -129,6 +129,10 @@ export class PresenterView {
129
}
130
131
public static async postMessage(command: string, payload: any) {
132
+ if (PresenterView.isDisposed) {
133
+ return;
134
+ }
135
136
PresenterView.webview?.webview.postMessage({
137
command,
138
payload,
0 commit comments