Remove prefix from stanza id

We sent `prof_prefix_uuid` as id. Where the prefix was also optional.
We don't need this at all.
This commit is contained in:
Michael Vetter
2019-10-17 15:40:40 +02:00
parent 827af999b7
commit 53640f6e97
10 changed files with 64 additions and 64 deletions

View File

@@ -331,7 +331,7 @@ _send_bookmarks(void)
{
xmpp_ctx_t *ctx = connection_get_ctx();
char *id = connection_create_stanza_id("bookmarks_update");
char *id = connection_create_stanza_id();
xmpp_stanza_t *iq = xmpp_iq_new(ctx, STANZA_TYPE_SET, id);
free(id);