Add priority skill's settingsmeta

pull/2433/head
Åke Forslund 2019-12-19 10:03:14 +01:00
parent ac874ecc88
commit d45edcd613
1 changed files with 3 additions and 1 deletions

View File

@ -179,7 +179,9 @@ class SkillManager(Thread):
log_msg = 'Downloading priority skill: {} failed'
LOG.exception(log_msg.format(skill_name))
continue
self._load_skill(skill.path)
loader = self._load_skill(skill.path)
if loader:
self.upload_queue.put(loader)
else:
LOG.error(
'Priority skill {} can\'t be found'.format(skill_name)