forked from LBRYCommunity/lbry-sdk
Merge pull request #3421 from lbryio/vault_temp
avoid [''] on peers list
This commit is contained in:
commit
561566e723
1 changed files with 1 additions and 1 deletions
|
@ -273,4 +273,4 @@ class Env:
|
|||
return self.PD_ON
|
||||
|
||||
def extract_peer_hubs(self):
|
||||
return [hub.strip() for hub in self.default('PEER_HUBS', '').split(',')]
|
||||
return [hub.strip() for hub in self.default('PEER_HUBS', '').split(',') if hub.strip()]
|
||||
|
|
Loading…
Reference in a new issue