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 | 0a0695d96bce2a3e4c5edaeb6ace2e2d3b47546b (patch) | |
tree | 2964b9e06e672936b7c36be7e39377c28e6307c2 /util | |
parent | 6e48cd5ece06914f4d55c17fbf936eb49acf8562 (diff) | |
download | prosody-0a0695d96bce2a3e4c5edaeb6ace2e2d3b47546b.tar.gz prosody-0a0695d96bce2a3e4c5edaeb6ace2e2d3b47546b.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 |