about summary refs log tree commit diff stats
path: root/src/xmpp/stanza.c
diff options
context:
space:
mode:
authorMichael Vetter <jubalh@iodoru.org>2019-05-03 10:36:26 +0200
committerMichael Vetter <jubalh@iodoru.org>2019-05-03 10:36:26 +0200
commitebbacec667afd6cbdb1ff6494b0cac56e8a6e913 (patch)
treef5549197126c1297e6d6a3d5aae5b4f970b3f141 /src/xmpp/stanza.c
parent928862132056056fc3edcb6177274cd9af8a795d (diff)
downloadprofani-tty-ebbacec667afd6cbdb1ff6494b0cac56e8a6e913.tar.gz
Update profanity URL in entity capabilities stanza
Regards https://github.com/profanity-im/profanity/issues/1085
Diffstat (limited to 'src/xmpp/stanza.c')
-rw-r--r--src/xmpp/stanza.c2
1 files changed, 1 insertions, 1 deletions
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);