mirror of
https://github.com/Microsoft/vscode
synced 2024-10-30 21:06:57 +00:00
parent
acb6d62091
commit
72803aaeee
1 changed files with 1 additions and 1 deletions
|
@ -599,7 +599,7 @@ class CallStackDataSource implements IAsyncDataSource<IDebugModel, CallStackItem
|
|||
if (sessions.length === 0) {
|
||||
return Promise.resolve([]);
|
||||
}
|
||||
if (sessions.length > 1 || this.debugService.getViewModel().isMultiSessionView()) {
|
||||
if (sessions.length > 1) {
|
||||
return Promise.resolve(sessions.filter(s => !s.parentSession));
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue