Skip to content

Commit

Permalink
also feed marker resource into id computation, #99140
Browse files Browse the repository at this point in the history
  • Loading branch information
jrieken committed Jun 3, 2020
1 parent ce184f3 commit 1434f62
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/vs/workbench/contrib/markers/browser/markersModel.ts
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ export class MarkersModel {
const index = markersCountByKey.get(key) || 0;
markersCountByKey.set(key, index + 1);

const markerId = this.id(resourceMarkers!.id, key, index);
const markerId = this.id(resourceMarkers!.id, key, index, rawMarker.resource.toString());

let relatedInformation: RelatedInformation[] | undefined = undefined;
if (rawMarker.relatedInformation) {
Expand Down

0 comments on commit 1434f62

Please sign in to comment.