mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-23 18:19:12 +01:00
CommentController.activeCommentThread seems to be the raw object instead of a proxy (#224282)
Fixes #223025
This commit is contained in:
@@ -641,11 +641,11 @@ export function createExtHostComments(mainContext: IMainContext, commands: ExtHo
|
||||
return this._activeComment;
|
||||
}
|
||||
|
||||
private _activeThread: vscode.CommentThread2 | undefined;
|
||||
private _activeThread: ExtHostCommentThread | undefined;
|
||||
|
||||
get activeCommentThread(): vscode.CommentThread2 | undefined {
|
||||
checkProposedApiEnabled(this._extension, 'activeComment');
|
||||
return this._activeThread;
|
||||
return this._activeThread?.value;
|
||||
}
|
||||
|
||||
private _localDisposables: types.Disposable[];
|
||||
|
||||
Reference in New Issue
Block a user