[FIX] Leaves now actually do matter on Matrix

This commit is contained in:
LDA 2024-09-07 18:37:45 +02:00
commit 53739dd42d
4 changed files with 46 additions and 1 deletions

View file

@ -223,9 +223,18 @@ extern char * ParseeFindDMRoom(ParseeData *data, char *mxid, char *jid);
/* Gets a DM ID from a Matrix and Jabber user */
extern char * ParseeGetDMID(char *mxid, char *jid);
/* Creates a DM mapping in the database */
/** Creates a DM mapping in the database.
* -------------------------
* Modifies: the Parsee database
* See-Also: ParseeDeleteDM */
extern void ParseePushDMRoom(ParseeData *, char *mxid, char *jid, char *r);
/** Destroys a DM mapping from the database, making it effectively non-existant.
* ---------------------
* Modifies: the Parsee database
* See-Also: ParseePushDMRoom */
extern void ParseeDeleteDM(ParseeData *data, char *mxid, char *jid);
/* Trims the component from a JID */
extern char * ParseeTrimJID(char *jid);