summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRemko Tronçon <git@el-tramo.be>2014-01-24 21:32:56 (GMT)
committerRemko Tronçon <git@el-tramo.be>2014-01-24 21:32:56 (GMT)
commit740e8d0146b93ade6ba34f0f6cb524e46b26d2cb (patch)
treed9453524754459142aad889f4b9d9e09a17a2486 /Sluift/core.lua
parent3c2225d42cc6b20618246f4b6de6fd6335c6b474 (diff)
downloadswift-740e8d0146b93ade6ba34f0f6cb524e46b26d2cb.zip
swift-740e8d0146b93ade6ba34f0f6cb524e46b26d2cb.tar.bz2
Sluift: Fix PubSubNode.subscribe
- Make sure 'sluift' is available in core.lua - Parse the options correctly Change-Id: I6f830372412008aa61c9203dc4f2f1b2f63b001b
Diffstat (limited to 'Sluift/core.lua')
-rw-r--r--Sluift/core.lua7
1 files changed, 5 insertions, 2 deletions
diff --git a/Sluift/core.lua b/Sluift/core.lua
index 1969690..9e81575 100644
--- a/Sluift/core.lua
+++ b/Sluift/core.lua
@@ -4,6 +4,7 @@
See the COPYING file for more information.
--]]
+local sluift = select(1, ...)
local _G = _G
local pairs, ipairs, print, tostring, type, error, assert, next, rawset, xpcall, unpack = pairs, ipairs, print, tostring, type, error, assert, next, rawset, xpcall, unpack
local setmetatable, getmetatable = setmetatable, getmetatable
@@ -891,7 +892,8 @@ end
function PubSubNode:subscribe(...)
- local options = parse_options(...)
+ local options = parse_options({}, ...)
+ tprint(options)
local jid = options.jid or sluift.jid.to_bare(self.client:jid())
return self.client:query_pubsub(merge_tables(
{ type = 'set', to = self.jid, query = {
@@ -903,7 +905,8 @@ function PubSubNode:unsubscribe(options)
options = options or {}
return self.client:query_pubsub(merge_tables(
{ type = 'set', to = self.jid, query = {
- _type = 'pubsub_unsubscribe', node = self.node, jid = options['jid'] }
+ _type = 'pubsub_unsubscribe', node = self.node, jid = options['jid'],
+ subscription_id = 'subscription_id'}
}, options))
end