Adds support for error element on message and presence

disco_info_form
Mickael Remond 6 years ago
parent 8cb1e1264e
commit 7ae2adca9f
No known key found for this signature in database
GPG Key ID: E6F6045D79965AA3

@ -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 {

@ -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 {

Loading…
Cancel
Save