aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2021-05-16 16:14:23 +0200
committerKim Alvefur <zash@zash.se>2021-05-16 16:14:23 +0200
commit0c6f17043f100150629d9b4c9c27a3489958f67c (patch)
treeb28e18bdc111dfcbf70c56899895bead1e32c6b2
parent0e1bf3c061a36edaea119d859aacb9764325c5bf (diff)
downloadprosody-0c6f17043f100150629d9b4c9c27a3489958f67c.tar.gz
prosody-0c6f17043f100150629d9b4c9c27a3489958f67c.zip
mod_pep: Remove obsolete node restoration code (now done by util.pubsub)
Originally added in 202b9951b037 but util.pubsub gained a better method in 6c2c2fc4b8dd since then, which mod_pep uses since 9194431b6447 which should have deleted this. All these :create calls would have failed with a 'conflict' error, since the nodes had already been created. This was never noticed because of missing error handling. Also note that this code did not restore node configuration.
-rw-r--r--plugins/mod_pep.lua12
1 files changed, 0 insertions, 12 deletions
diff --git a/plugins/mod_pep.lua b/plugins/mod_pep.lua
index d94cab40..4dc9ecbc 100644
--- a/plugins/mod_pep.lua
+++ b/plugins/mod_pep.lua
@@ -207,18 +207,6 @@ function get_pep_service(username)
check_node_config = check_node_config;
});
- local nodes, err = known_nodes:get(username);
- if nodes then
- module:log("debug", "Restoring nodes for user %s", username);
- for node in pairs(nodes) do
- module:log("debug", "Restoring node %q", node);
- service:create(node, true);
- end
- elseif err then
- module:log("error", "Could not restore nodes for %s: %s", username, err);
- else
- module:log("debug", "No known nodes");
- end
services[username] = service;
module:add_item("pep-service", { service = service, jid = user_bare });
return service;