Skip to content

Commit

Permalink
fix #1173
Browse files Browse the repository at this point in the history
  • Loading branch information
mirkobrombin committed Mar 14, 2022
1 parent 8396c6f commit 1a7e92f
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/backend/managers/manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -497,6 +497,7 @@ def __check_component(
component_type=component_type,
component_name=component_version
)
component["available"] = [component_version]
except StopIteration:
return False
else:
Expand Down Expand Up @@ -1422,6 +1423,8 @@ def install_dll_component(
_version = config.get("LatencyFleX")
_version = version if version else _version
if not _version:
if len(self.latencyflex_available) == 0:
self.check_latencyflex(install_latest=True)
_version = self.latencyflex_available[0]
manager = LatencyFleXComponent(_version)
else:
Expand Down

0 comments on commit 1a7e92f

Please sign in to comment.