Skip to content

Commit b4a78c3

Browse files
kylos101Copilot
andauthored
Update components/gitpod-protocol/src/protocol.ts
Co-authored-by: Copilot <[email protected]>
1 parent c0be79f commit b4a78c3

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

components/gitpod-protocol/src/protocol.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -307,7 +307,8 @@ export namespace EnvVar {
307307
.split(",")
308308
.map((e) => e.trim().split(":"))
309309
.forEach((parts) => {
310-
getHost(parts) !== "" ? res.set(getHost(parts), parts[parts.length - 1]) : null;
310+
const host = getHost(parts);
311+
host !== "" ? res.set(host, parts[parts.length - 1]) : null;
311312
});
312313

313314
return res;

0 commit comments

Comments
 (0)