When building jackett url we no longer use, convert_query_to_percent_encoded_octets, this is now done in our build_url function in http_utils.
This commit is contained in:
		@@ -41,7 +41,7 @@ class Jackett(object):
 | 
				
			|||||||
		args_dict = {
 | 
							args_dict = {
 | 
				
			||||||
			'apikey': self.get_apikey(),
 | 
								'apikey': self.get_apikey(),
 | 
				
			||||||
			'limit': self.get_page_limit(),
 | 
								'limit': self.get_page_limit(),
 | 
				
			||||||
			'q': convert_query_to_percent_encoded_octets(query)
 | 
								'q': query
 | 
				
			||||||
		}
 | 
							}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
		url = build_url(self.ssl, baseUrl, path, args_dict)
 | 
							url = build_url(self.ssl, baseUrl, path, args_dict)
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user