Software /
code /
prosody
Annotate
plugins/mod_compression.lua @ 9089:3a7a0b9f42f3
util.dataforms: Skip all fields for the 'cancel' form type
XEP-0004 says:
> a data form of type "cancel" SHOULD NOT contain any <field/> elements.
The title and instructions don't seem to be of much value in this case
either.
I'm not aware of 'cancel' being used anywhere, so this should break
nothing. Early return is always nice.
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Fri, 03 Aug 2018 21:06:59 +0200 |
parent | 7349:ad3dce172b01 |
rev | line source |
---|---|
1669
b8eec163a823
Commit initial version of mod_compression.
Tobias Markmann <tm@ayena.de>
parents:
diff
changeset
|
1 -- Prosody IM |
7349
ad3dce172b01
mod_compression: Remove and replace with placeholder that logs an error
Matthew Wild <mwild1@gmail.com>
parents:
6984
diff
changeset
|
2 -- Copyright (C) 2016 Matthew Wild |
5776
bd0ff8ae98a8
Remove all trailing whitespace
Florian Zeitz <florob@babelmonkeys.de>
parents:
5535
diff
changeset
|
3 -- |
1669
b8eec163a823
Commit initial version of mod_compression.
Tobias Markmann <tm@ayena.de>
parents:
diff
changeset
|
4 -- This project is MIT/X11 licensed. Please see the |
b8eec163a823
Commit initial version of mod_compression.
Tobias Markmann <tm@ayena.de>
parents:
diff
changeset
|
5 -- COPYING file in the source package for more information. |
b8eec163a823
Commit initial version of mod_compression.
Tobias Markmann <tm@ayena.de>
parents:
diff
changeset
|
6 -- |
b8eec163a823
Commit initial version of mod_compression.
Tobias Markmann <tm@ayena.de>
parents:
diff
changeset
|
7 |
7349
ad3dce172b01
mod_compression: Remove and replace with placeholder that logs an error
Matthew Wild <mwild1@gmail.com>
parents:
6984
diff
changeset
|
8 -- COMPAT w/ pre-0.10 configs |
ad3dce172b01
mod_compression: Remove and replace with placeholder that logs an error
Matthew Wild <mwild1@gmail.com>
parents:
6984
diff
changeset
|
9 error("mod_compression has been removed in Prosody 0.10+. Please see https://prosody.im/doc/modules/mod_compression for more information."); |