diff options
author | Kim Alvefur <zash@zash.se> | 2018-08-06 23:20:36 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2018-08-06 23:20:36 +0200 |
commit | 873ba6dd77c35285db821b68a13a903351126ec5 (patch) | |
tree | 443669dd3701277024f7f601e5ee8d7516078153 | |
parent | 3178d9bebb5b22eb40dd0e988cc22bf1888caf94 (diff) | |
download | prosody-873ba6dd77c35285db821b68a13a903351126ec5.tar.gz prosody-873ba6dd77c35285db821b68a13a903351126ec5.zip |
mod_pep: Correct comment about 'recipients' table
-rw-r--r-- | plugins/mod_pep.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/mod_pep.lua b/plugins/mod_pep.lua index f6ec8e12..067d87ec 100644 --- a/plugins/mod_pep.lua +++ b/plugins/mod_pep.lua @@ -20,7 +20,7 @@ local empty_set = set_new(); -- username -> util.pubsub service object local services = {}; --- username -> recipient -> set of full JID +-- username -> recipient -> set of nodes local recipients = {}; local hash_map = {}; |