feat(api): return none if not server is provided

This commit is contained in:
Taha Yassine Kraiem 2021-11-30 19:01:25 +01:00
parent 0419000b26
commit 2c76c9f91d

View file

@ -29,6 +29,8 @@ def get_temporary_credentials():
def get_full_config():
servers = assist.get_ice_servers()
if servers is None:
return None
servers = servers.split("|")
credentials = get_temporary_credentials()
if __get_secret() is not None: