Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: eclipse-theia/theia
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 366d5edb2fdd091dcddf0ed523925c7047515eb5
Choose a base ref
..
head repository: eclipse-theia/theia
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 8258070cca6edc54b6a535d1281402a196f7e7f2
Choose a head ref
Showing with 1 addition and 1 deletion.
  1. +1 −1 dev-packages/request-service/src/node-request-service.ts
2 changes: 1 addition & 1 deletion dev-packages/request-service/src/node-request-service.ts
Original file line number Diff line number Diff line change
@@ -116,7 +116,7 @@ export class NodeRequestService implements RequestService {
const chunks: Uint8Array[] = [];

res.on('data', chunk => {
chunks.push(new Uint8Array(chunk));
chunks.push(chunk);
});

res.on('end', () => {