Skip to content
Snippets Groups Projects
Commit 8661ed1c authored by Yann Leboulanger's avatar Yann Leboulanger
Browse files

[misc] if status is not set in the TXT record in zeroconf, consider it as avail, see #3057

parent 5c1d5423
No related branches found
No related tags found
No related merge requests found
......@@ -67,6 +67,8 @@ class Roster:
status = txt_dict['status']
else:
status = ''
if not status:
status = 'avail'
nm = ''
if txt_dict.has_key('1st'):
nm = txt_dict['1st']
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment