forked from LBRYCommunity/lbry-sdk
Merge pull request #257 from lbryio/ensure-ui-loads
bug fix: ensure the bundled ui is loaded
This commit is contained in:
commit
edc89be794
1 changed files with 4 additions and 4 deletions
|
@ -255,11 +255,11 @@ class BundledUIManager(object):
|
|||
Returns True if there is a bundled UI, False otherwise
|
||||
"""
|
||||
if not self.bundle_is_available():
|
||||
log.debug('No bundled UI is available')
|
||||
return False
|
||||
if self.is_active_already_bundled_ui():
|
||||
return True
|
||||
log.info('Using bundled UI')
|
||||
if not self.is_active_already_bundled_ui():
|
||||
replace_dir(self.active_dir, self.bundled_ui_path)
|
||||
log.info('Loading the bundled UI')
|
||||
load_ui(self.root, self.active_dir)
|
||||
return True
|
||||
|
||||
|
|
Loading…
Reference in a new issue