Skip to content

Commit 0a2fb98

Browse files
committed
Fixed CookiesJar toString
1 parent 3a41e7e commit 0a2fb98

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cookiejar.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -226,7 +226,7 @@
226226
}
227227
}
228228
matches.toString = function toString() {
229-
return matches.join(":");
229+
return matches.join(",");
230230
};
231231
matches.toValueString = function toValueString() {
232232
return matches.map(function (c) {

0 commit comments

Comments
 (0)