From ebbacec667afd6cbdb1ff6494b0cac56e8a6e913 Mon Sep 17 00:00:00 2001 From: Michael Vetter Date: Fri, 3 May 2019 10:36:26 +0200 Subject: [PATCH] Update profanity URL in entity capabilities stanza Regards https://github.com/profanity-im/profanity/issues/1085 --- src/xmpp/stanza.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/xmpp/stanza.c b/src/xmpp/stanza.c index 615de44f..878e5b13 100644 --- a/src/xmpp/stanza.c +++ b/src/xmpp/stanza.c @@ -1954,7 +1954,7 @@ stanza_attach_caps(xmpp_ctx_t *const ctx, xmpp_stanza_t *const presence) char *sha1 = caps_get_my_sha1(ctx); xmpp_stanza_set_attribute(caps, STANZA_ATTR_HASH, "sha-1"); - xmpp_stanza_set_attribute(caps, STANZA_ATTR_NODE, "http://www.profanity.im"); + xmpp_stanza_set_attribute(caps, STANZA_ATTR_NODE, "https://profanity-im.github.io"); xmpp_stanza_set_attribute(caps, STANZA_ATTR_VER, sha1); xmpp_stanza_add_child(presence, caps); xmpp_stanza_release(caps);