mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-24 21:04:40 +01:00
fix launcher
This commit is contained in:
parent
e4cee4a98d
commit
1cea16b97b
1 changed files with 3 additions and 3 deletions
|
|
@ -651,9 +651,9 @@ class LauncherModel(QtCore.QObject):
|
|||
self._asset_refresh_thread = None
|
||||
|
||||
def _refresh_assets(self):
|
||||
asset_docs = get_assets(
|
||||
self._last_project_name, fields=list(self._asset_projection.keys())
|
||||
)
|
||||
asset_docs = list(get_assets(
|
||||
self._last_project_name, fields=self._asset_projection.keys()
|
||||
))
|
||||
if not self._refreshing_assets:
|
||||
return
|
||||
self._refreshing_assets = False
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue