diff options
author | Kim Alvefur <zash@zash.se> | 2013-05-26 16:01:09 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2013-05-26 16:01:09 +0200 |
commit | d162fd9921ce280027b1d2466f2a1f1d330347a6 (patch) | |
tree | 7fa6d4fdc646fd10787f7e084781e0eeb2b434fb /util/pubsub.lua | |
parent | ce2b29fe493364b4a48a43bda19e9819bb3275a6 (diff) | |
download | prosody-d162fd9921ce280027b1d2466f2a1f1d330347a6.tar.gz prosody-d162fd9921ce280027b1d2466f2a1f1d330347a6.zip |
util.pubsub: Fix get_subscriptions to not pass a boolean as node name (thanks jonas)
Diffstat (limited to 'util/pubsub.lua')
-rw-r--r-- | util/pubsub.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util/pubsub.lua b/util/pubsub.lua index e7fc86b1..1ecbdfa8 100644 --- a/util/pubsub.lua +++ b/util/pubsub.lua @@ -350,7 +350,7 @@ function service:get_subscriptions(node, actor, jid) if node then -- Return only subscriptions to this node if subscribed_nodes[node] then ret[#ret+1] = { - node = subscribed_nodes[node]; + node = node; jid = jid; subscription = node_obj.subscribers[jid]; }; |