diff options
author | Kim Alvefur <zash@zash.se> | 2021-03-24 16:36:00 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2021-03-24 16:36:00 +0100 |
commit | 85d3eb829bb48512ab27a4c4971403e1f2284fb0 (patch) | |
tree | f858930de30552dfd7dd261bacb85af5a499d3dd | |
parent | 4720eea24f8fa382c778ecf28dd0e98a2c43c1d3 (diff) | |
download | prosody-85d3eb829bb48512ab27a4c4971403e1f2284fb0.tar.gz prosody-85d3eb829bb48512ab27a4c4971403e1f2284fb0.zip |
mod_message: Stop advertising offline message support (mod_offline does that)
mod_offline also already advertises this feature, so it's added twice.
-rw-r--r-- | plugins/mod_message.lua | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/plugins/mod_message.lua b/plugins/mod_message.lua index 4b8154e0..8b36768f 100644 --- a/plugins/mod_message.lua +++ b/plugins/mod_message.lua @@ -80,5 +80,3 @@ module:hook("message/bare", function(data) return process_to_bare(stanza.attr.to or (origin.username..'@'..origin.host), origin, stanza); end, -1); - -module:add_feature("msgoffline"); |