Skip to content

Commit

Permalink
fix(tracing): do not merge srcset urls (microsoft#6995)
Browse files Browse the repository at this point in the history
  • Loading branch information
pavelfeldman committed Jun 9, 2021
1 parent a7b3bc1 commit 19d69b7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/server/snapshot/snapshotterInjected.ts
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ export function frameSnapshotStreamer(snapshotStreamer: string) {
if (spaceIndex === -1)
return this._sanitizeUrl(src);
return this._sanitizeUrl(src.substring(0, spaceIndex).trim()) + src.substring(spaceIndex);
}).join(',');
}).join(', ');
}

private _resolveUrl(base: string, url: string): string {
Expand Down

0 comments on commit 19d69b7

Please sign in to comment.