fix: delayable from accessing session data before its ready

refactor: remove
feat: submodule update
This commit is contained in:
Swann Martinez
2020-02-07 17:08:36 +01:00
parent 22eb65358b
commit 81752e9a23
4 changed files with 32 additions and 38 deletions

View File

@ -229,7 +229,7 @@ class SESSION_UL_users(bpy.types.UIList):
if user:
ping = str(user['latency'])
metadata = user.get('metadata')
if metadata:
if metadata and 'frame_current' in metadata:
frame_current = str(metadata['frame_current'])
split = layout.split(factor=0.5)