mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-08-23 17:47:31 +00:00
fix another http leak
This commit is contained in:
parent
7658b2ade1
commit
89a9ce2ab4
1 changed files with 3 additions and 0 deletions
|
@ -54,6 +54,9 @@ class UpdateLabel(QLabel):
|
|||
self.config = config
|
||||
self.current_version = ELECTRUM_VERSION
|
||||
self.connect(self, QtCore.SIGNAL('new_electrum_version'), self.new_electrum_version)
|
||||
# prevent HTTP leaks if a proxy is set
|
||||
if self.config.get('proxy'):
|
||||
return
|
||||
VersionGetter(self).start()
|
||||
|
||||
def callback(self, version):
|
||||
|
|
Loading…
Add table
Reference in a new issue