Merge branch 'mig5-fix_double_slash_in_update_checker_url'

This commit is contained in:
Micah Lee 2017-05-22 14:01:38 -07:00
commit c056005696
No known key found for this signature in database
GPG Key ID: 403C2657CD994F73

View File

@ -97,7 +97,7 @@ class UpdateChecker(QtCore.QObject):
onion_domain = 'elx57ue5uyfplgva.onion'
common.log('UpdateChecker', 'check', 'loading http://{}/{}'.format(onion_domain, path))
common.log('UpdateChecker', 'check', 'loading http://{}{}'.format(onion_domain, path))
(socks_address, socks_port) = self.onion.get_tor_socks_port()
socks.set_default_proxy(socks.SOCKS5, socks_address, socks_port)