Skip to content

Commit

Permalink
More merge issues
Browse files Browse the repository at this point in the history
  • Loading branch information
DonJayamanne committed Sep 26, 2022
1 parent bd89fce commit 7649cd1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/vs/workbench/api/common/extHostTypes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3521,7 +3521,7 @@ export class NotebookCellOutput {
const item = items[i];
const normalMime = normalizeMimeType(item.mime);
// We can have multiple text stream mime types in the same output.
if (!seen.has(normalMime) || isTextStreamMime(item.mime)) {
if (!seen.has(normalMime) || isTextStreamMime(normalMime)) {
seen.add(normalMime);
continue;
}
Expand Down

0 comments on commit 7649cd1

Please sign in to comment.