Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update lib/internal/http2/util.js
linter fix
  • Loading branch information
sagitsofan committed Dec 14, 2018
commit 706d7b09e5f7a2194c0dc5267f7a38c4f703cea4
3 changes: 1 addition & 2 deletions lib/internal/http2/util.js
Original file line number Diff line number Diff line change
Expand Up @@ -479,8 +479,7 @@ function mapToHeaders(map,
ret += `${key}\0${val}\0`;
}
count += value.length;
}
else if (key === HTTP2_HEADER_CONNECTION) {
} else if (key === HTTP2_HEADER_CONNECTION) {
headerMessageWarn(key);
} else {
ret += `${key}\0${value}\0`;
Expand Down