diff options
author | fiaxh <git@lightrise.org> | 2023-01-06 16:14:47 +0100 |
---|---|---|
committer | fiaxh <git@lightrise.org> | 2023-01-11 19:49:03 +0100 |
commit | cb3b19b01deb8460627578b885339e7528411f6f (patch) | |
tree | e879305f4f43b0f88c44aeef4c02fde3f101b1e9 /xmpp-vala/src/util.vala | |
parent | 0c4aea96ffbc05d6efeb9a83424b872ce7f30d88 (diff) | |
download | dino-cb3b19b01deb8460627578b885339e7528411f6f.tar.gz dino-cb3b19b01deb8460627578b885339e7528411f6f.zip |
Support replies and reactions to files
Diffstat (limited to 'xmpp-vala/src/util.vala')
-rw-r--r-- | xmpp-vala/src/util.vala | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/xmpp-vala/src/util.vala b/xmpp-vala/src/util.vala index 6c0d0c9b..fda21f88 100644 --- a/xmpp-vala/src/util.vala +++ b/xmpp-vala/src/util.vala @@ -38,3 +38,11 @@ public long from_hex(string numeral) { } } + +namespace Xmpp { + public errordomain SendError { + IO, + NoStream, + Misc + } +} |