# HG changeset patch # User Kim Alvefur # Date 1544549260 -3600 # Node ID 6a3060d5e85df51794aee2e46af6521f0fb1edbf # Parent 8412592f301136969e5a2da10dacf83cf497c8db mod_muc_limits: Document brokenness with 0.11.x diff -r 8412592f3011 -r 6a3060d5e85d mod_muc_limits/README.markdown --- a/mod_muc_limits/README.markdown Tue Dec 11 18:27:08 2018 +0100 +++ b/mod_muc_limits/README.markdown Tue Dec 11 18:27:40 2018 +0100 @@ -66,12 +66,13 @@ Compatibility ============= - ------- ------------------ - Trunk Unknown + ------- --------------------------------------------------------------------------------- + trunk Doesn't work since [0ebc7ff1fff5](https://hg.prosody.im/trunk/rev/0ebc7ff1fff5) + 0.11 Doesn't work 0.10 Works 0.9 Works 0.8 Doesn't work[^1] - ------- ------------------ + ------- --------------------------------------------------------------------------------- [^1]: This module can be made to work in 0.8 (and *maybe* previous versions) of Prosody by copying the new diff -r 8412592f3011 -r 6a3060d5e85d mod_muc_limits/mod_muc_limits.lua --- a/mod_muc_limits/mod_muc_limits.lua Tue Dec 11 18:27:08 2018 +0100 +++ b/mod_muc_limits/mod_muc_limits.lua Tue Dec 11 18:27:40 2018 +0100 @@ -2,7 +2,7 @@ local mod_muc = module:depends"muc"; local rooms = rawget(mod_muc, "rooms"); -- Old MUC API if not rooms then - rooms = module:shared"muc/rooms"; -- New MUC API + error "Not compatible with 0.11 MUC API" end local jid_split, jid_bare = require "util.jid".split, require "util.jid".bare;