Mercurial > libervia-backend
diff sat/core/constants.py @ 2994:94708a7d3ecf
core, plugin XEP-0045: fixed message type autodetection + ENTITY_TYPE_MUC constant:
an old hardcoded value was used in several places to detect if an entity is a MUC, but this
value was not valid anymore. This has been fixed, and ENTITY_TYPE_MUC constant is now used
instead. This fixes message type autodetection for "groupchat" messages.
fixes 300
author | Goffi <goffi@goffi.org> |
---|---|
date | Tue, 09 Jul 2019 09:06:45 +0200 |
parents | d86ecc34516e |
children | ff5bcb12ae60 |
line wrap: on
line diff
--- a/sat/core/constants.py Mon Jul 08 19:11:29 2019 +0200 +++ b/sat/core/constants.py Tue Jul 09 09:06:45 2019 +0200 @@ -94,7 +94,8 @@ ENTITY_ALL_RESOURCES = "@ALL_RESOURCES@" ENTITY_MAIN_RESOURCE = "@MAIN_RESOURCE@" ENTITY_CAP_HASH = "CAP_HASH" - ENTITY_TYPE = "TYPE" + ENTITY_TYPE = "type" + ENTITY_TYPE_MUC = "MUC" ## Roster jids selection ## PUBLIC = "PUBLIC"