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 11dba03 commit 853eedcCopy full SHA for 853eedc
pywb/warcserver/index/indexsource.py
@@ -132,13 +132,14 @@ def _get_api_url(self, params):
132
if 'matchType' in params:
133
api_url += '&matchType=' + params.get('matchType')
134
135
+ self.logger.info(api_url)
136
return api_url
137
138
def add_url_post_param(self, params):
139
# extract POST data value from urlkey and compose url_post parameter
140
key_str = params['key'].decode('utf-8')
141
match_post = re.match(self.POSTDATA_MATCH_RX, key_str)
- params['url_post'] = params['url']
142
+ params['url_post'] = quote(params['url'])
143
144
if match_post and match_post.groupdict() is not None:
145
url_query = parse_qs(urlparse(params['url']).query)
0 commit comments