diff --git a/library/network/protocol/http/src/http_header.e b/library/network/protocol/http/src/http_header.e index db797f9a..49dec769 100644 --- a/library/network/protocol/http/src/http_header.e +++ b/library/network/protocol/http/src/http_header.e @@ -180,7 +180,9 @@ feature -- Header: adding if line [line.count] = '%R' then line.remove_tail (1) end - add_header (line) + if not line.is_empty then + add_header (line) + end end end end