Skip to content
This repository was archived by the owner on Oct 22, 2020. It is now read-only.

Commit aaceebf

Browse files
committed
Fix missing semi-colon from serialised cookie jar
1 parent ddc55de commit aaceebf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/wpxf/net/cookie_jar.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ module Net
44
class CookieJar < Hash
55
# @return [String] a cookie string.
66
def to_s
7-
map { |key, value| "#{key}=#{value}" }.join('; ')
7+
map { |key, value| "#{key}=#{value};" }.join(' ')
88
end
99

1010
# Parse a cookie into the {CookieJar}.

0 commit comments

Comments
 (0)