Adds support for error element on message and presence

This commit is contained in:
Mickael Remond 2018-01-23 09:10:10 +01:00
parent 8cb1e1264e
commit 7ae2adca9f
No known key found for this signature in database
GPG key ID: E6F6045D79965AA3
2 changed files with 2 additions and 1 deletions

View file

@ -14,6 +14,7 @@ type Message struct {
Subject string `xml:"subject,omitempty"`
Body string `xml:"body,omitempty"`
Thread string `xml:"thread,omitempty"`
Error Err `xml:"error,omitempty"`
}
func (Message) Name() string {

View file

@ -11,7 +11,7 @@ type Presence struct {
Show string `xml:"show,attr,omitempty"` // away, chat, dnd, xa
Status string `xml:"status,attr,omitempty"`
Priority string `xml:"priority,attr,omitempty"`
//Error *clientError
Error Err `xml:"error,omitempty"`
}
func (Presence) Name() string {