diff options
author | Matthew Wild <mwild1@gmail.com> | 2018-08-18 14:33:49 +0100 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2018-08-18 14:33:49 +0100 |
commit | 38c448b46053344b862b5f2b6ef551b2bbcf3f20 (patch) | |
tree | 2964b9e06e672936b7c36be7e39377c28e6307c2 /util | |
parent | a1c779a3eb5f7031fe01738087d03f3fe8ae44e2 (diff) | |
download | prosody-38c448b46053344b862b5f2b6ef551b2bbcf3f20.tar.gz prosody-38c448b46053344b862b5f2b6ef551b2bbcf3f20.zip |
util.pubsub: Fix whitespace [luacheck]
Diffstat (limited to 'util')
-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 72f7f5a7..b4b9ada9 100644 --- a/util/pubsub.lua +++ b/util/pubsub.lua @@ -602,7 +602,7 @@ function service:get_last_item(node, actor) if not self.nodes[node] then return false, "item-not-found"; end - + -- Returns success, id, item return true, self.data[node]:tail(); end |