diff options
author | fiaxh <git@lightrise.org> | 2020-07-15 15:08:56 +0200 |
---|---|---|
committer | fiaxh <git@lightrise.org> | 2020-07-16 23:31:19 +0200 |
commit | 7309c6f3ac4e580f197b4835d05bb011fa90780b (patch) | |
tree | de269a5c89ea5d7b01d35f011d928f678e076c8f /xmpp-vala/src/core | |
parent | e159fd2492c28c1ef4ab64828ca0e8c2de877b41 (diff) | |
download | dino-7309c6f3ac4e580f197b4835d05bb011fa90780b.tar.gz dino-7309c6f3ac4e580f197b4835d05bb011fa90780b.zip |
Visually highlight pending messages, improve resending
Diffstat (limited to 'xmpp-vala/src/core')
-rw-r--r-- | xmpp-vala/src/core/xmpp_stream.vala | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xmpp-vala/src/core/xmpp_stream.vala b/xmpp-vala/src/core/xmpp_stream.vala index f4cdf09a..7e7588b1 100644 --- a/xmpp-vala/src/core/xmpp_stream.vala +++ b/xmpp-vala/src/core/xmpp_stream.vala @@ -410,7 +410,7 @@ public class StartTlsConnectionProvider : ConnectionProvider { } public interface WriteNodeFunc : Object { - public abstract async void write_stanza(XmppStream stream, StanzaNode node) throws IOError; + public abstract async void write_stanza(XmppStream stream, StanzaNode node) throws IOStreamError; } } |