mirror of
https://git.jabber.space/devs/cproof.git
synced 2026-07-26 09:16:21 +00:00
Free timestamp and id for receipts
This commit is contained in:
@@ -581,9 +581,10 @@ _message_send_receipt(const char * const fulljid, const char * const message_id)
|
||||
xmpp_conn_t * const conn = connection_get_conn();
|
||||
xmpp_ctx_t * const ctx = connection_get_ctx();
|
||||
xmpp_stanza_t *message = xmpp_stanza_new(ctx);
|
||||
char *id = create_unique_id("receipt");
|
||||
xmpp_stanza_set_name(message, STANZA_NAME_MESSAGE);
|
||||
char *id = create_unique_id("receipt");
|
||||
xmpp_stanza_set_id(message, id);
|
||||
free(id);
|
||||
xmpp_stanza_set_attribute(message, STANZA_ATTR_TO, fulljid);
|
||||
|
||||
xmpp_stanza_t *receipt = xmpp_stanza_new(ctx);
|
||||
|
||||
Reference in New Issue
Block a user