Skip to content

Commit f9104f4

Browse files
authored
Fix method call (#8177)
1 parent 2ddc41a commit f9104f4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/github/copilotRemoteAgent.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ export class CopilotRemoteAgentManager extends Disposable {
194194

195195
const pullRequest = await this.findPullRequestById(parseInt(context.chatSessionContext.chatSessionItem.resource.path.slice(1), 10), true);
196196
if (!pullRequest) {
197-
stream.warning(vscode.l10n.t('Could not find the associated pull request {0} for this chat session.', context.chatSessionContext.chatSessionItem.resource.toString));
197+
stream.warning(vscode.l10n.t('Could not find the associated pull request {0} for this chat session.', context.chatSessionContext.chatSessionItem.resource.toString()));
198198
return {};
199199
}
200200

0 commit comments

Comments
 (0)