Skip to content

Commit 16c3238

Browse files
author
Sebastiano Merlino
committed
Changed ";" to "," in cookie concatenation.
1 parent 608a581 commit 16c3238

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/http_response.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ void http_response::decorate_response(MHD_Response* response)
135135
for (it=cookies.begin(); it != cookies.end(); ++it)
136136
{
137137
if(!first)
138-
ss << "; ";
138+
ss << ", ";
139139
else
140140
first = false;
141141
ss << (*it).first << "=" << (*it).second;

0 commit comments

Comments
 (0)