This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "emacs-jabber".
The branch, master has been updated
via 7c8c72a17b8e026ab5f9f7423d2f33683bf39763 (commit)
from 57594244d38ce2dff1031dbcef2eed0508438be0 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 7c8c72a17b8e026ab5f9f7423d2f33683bf39763
Author: Magnus Henoch <mag...@gm...>
Date: Fri May 9 01:46:17 2014 +0100
Remember stream features after authentication
The features reported after authentication are the ones that may be
relevant for the established session.
diff --git a/jabber-core.el b/jabber-core.el
index c75370d..5018aae 100644
--- a/jabber-core.el
+++ b/jabber-core.el
@@ -657,6 +657,8 @@ With double prefix argument, specify more connection details."
(let ((stanza (cadr event)))
(cond
((eq (jabber-xml-node-name stanza) 'features)
+ ;; Record stream features, discarding earlier data:
+ (setq state-data (plist-put state-data :stream-features stanza))
(if (and (jabber-xml-get-children stanza 'bind)
(jabber-xml-get-children stanza 'session))
(labels
-----------------------------------------------------------------------
Summary of changes:
jabber-core.el | 2 ++
1 files changed, 2 insertions(+), 0 deletions(-)
hooks/post-receive
--
emacs-jabber
|