mirror of
https://github.com/microsoft/vscode.git
synced 2026-07-17 17:33:32 +01:00
Revive TimelineChangeEvent.uri if passed in TimelineProvider.onDidChange event (#212927)
This commit is contained in:
@@ -418,7 +418,7 @@ export class TimelinePane extends ViewPane {
|
||||
}
|
||||
|
||||
private onTimelineChanged(e: TimelineChangeEvent) {
|
||||
if (e?.uri === undefined || this.uriIdentityService.extUri.isEqual(e.uri, this.uri)) {
|
||||
if (e?.uri === undefined || this.uriIdentityService.extUri.isEqual(URI.revive(e.uri), this.uri)) {
|
||||
const timeline = this.timelinesBySource.get(e.id);
|
||||
if (timeline === undefined) {
|
||||
return;
|
||||
|
||||
Reference in New Issue
Block a user