diff options
-rw-r--r-- | lib/pure/httpcore.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/pure/httpcore.nim b/lib/pure/httpcore.nim index 219c22265..c4d575833 100644 --- a/lib/pure/httpcore.nim +++ b/lib/pure/httpcore.nim @@ -102,7 +102,7 @@ proc `[]`*(headers: HttpHeaders, key: string, i: int): string = proc `[]=`*(headers: HttpHeaders, key, value: string) = ## Sets the header entries associated with ``key`` to the specified value. ## Replaces any existing values. - headers.table[key.toLower] = @[value.toLower] + headers.table[key.toLower] = @[value] proc `[]=`*(headers: HttpHeaders, key: string, value: seq[string]) = ## Sets the header entries associated with ``key`` to the specified list of |