diff --git a/src/vs/workbench/contrib/comments/browser/commentReply.ts b/src/vs/workbench/contrib/comments/browser/commentReply.ts index 0a426cc7a1415..2b4f22775d7fd 100644 --- a/src/vs/workbench/contrib/comments/browser/commentReply.ts +++ b/src/vs/workbench/contrib/comments/browser/commentReply.ts @@ -86,14 +86,10 @@ export class CommentReply extends Disposable { this.updateAuthorInfo(); const hasExistingComments = this._commentThread.comments && this._commentThread.comments.length > 0; const modeId = generateUuid() + '-' + (hasExistingComments ? this._commentThread.threadId : ++INMEM_MODEL_ID); - const params = JSON.stringify({ - extensionId: this._commentThread.extensionId, - commentThreadId: this._commentThread.threadId - }); let resource = URI.from({ scheme: Schemas.commentsInput, - path: `/${this._commentThread.extensionId}/commentinput-${modeId}.md?${params}` // TODO. Remove params once extensions adopt authority. + path: `/${this._commentThread.extensionId}/commentinput-${modeId}.md` }); const commentController = this.commentService.getCommentController(this.owner); if (commentController) {