提交 857342ab 编写于 作者: I isidor

Call stack context menu option do not send internal URL

fixes #18761
上级 07be58da
......@@ -293,6 +293,10 @@ export class CallStackController extends BaseDebugController {
protected getContext(element: any): any {
if (element instanceof StackFrame) {
if (element.source.inMemory) {
return element.source.raw.path || element.source.reference;
}
return element.source.uri.toString();
}
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册