Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5705623 commit c4df6f3Copy full SHA for c4df6f3
1 file changed
lib/request/connect.py
@@ -439,6 +439,11 @@ class _(dict):
439
440
logger.log(CUSTOM_LOGGING.TRAFFIC_OUT, requestMsg)
441
442
+ if conf.cj:
443
+ for cookie in conf.cj:
444
+ if cookie.value is None:
445
+ cookie.value = ""
446
+
447
conn = urllib2.urlopen(req)
448
449
if not kb.authHeader and getRequestHeader(req, HTTP_HEADER.AUTHORIZATION) and (conf.authType or "").lower() == AUTH_TYPE.BASIC.lower():
0 commit comments