Skip to content
Snippets Groups Projects
Commit 2d421f90 authored by Edward Hicks's avatar Edward Hicks :8ball:
Browse files

lists, not objects

parent e19b60bb
No related branches found
No related tags found
No related merge requests found
Pipeline #91947 passed
......@@ -425,7 +425,7 @@ while True:
# Only proceed if the message is meant for either everyone or us explicitly
try:
if '*' not in payload.nodes and Session['nodename'] not in payload.nodes:
if '*' not in payload['nodes'] and Session['nodename'] not in payload['nodes']:
#printlog("Message not meant for us - ignoring it", loglevels.DEBUG)
continue
except:
......
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