Unverified Commit 410dde69 authored by Dan Jones's avatar Dan Jones
Browse files

fix: correct queue name for broadcast messages

parent 44518aef
...@@ -30,7 +30,7 @@ class Notify(Resource): ...@@ -30,7 +30,7 @@ class Notify(Resource):
'message': body, 'message': body,
} }
client_id = args.get("client_id") client_id = args.get("client_id")
notify_queue = client_id + "-notify" notify_queue = client_id + "-broadcast"
if client_id in self.clients: if client_id in self.clients:
client = self.clients.get(client_id) client = self.clients.get(client_id)
if args.get("secret") == client.get("secret"): if args.get("secret") == client.get("secret"):
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment