Merge pull request #2 from ianlamb/master

fix: add xml namespace prefix to message lang attrs
pull/168/head
Dave Johnston 3 years ago committed by GitHub
commit 19e0222910
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -8,9 +8,10 @@ import (
// ============================================================================
// Message Packet
// LocalizedString is a string node with a language attribute.
type LocalizedString struct {
Content string `xml:",chardata"`
Lang string `xml:"lang,attr,omitempty"`
Lang string `xml:"http://www.w3.org/XML/1998/namespace lang,attr,omitempty"`
}
// Message implements RFC 6120 - A.5 Client Namespace (a part)

@ -10,7 +10,7 @@ type Attrs struct {
Id string `xml:"id,attr,omitempty"`
From string `xml:"from,attr,omitempty"`
To string `xml:"to,attr,omitempty"`
Lang string `xml:"lang,attr,omitempty"`
Lang string `xml:"http://www.w3.org/XML/1998/namespace lang,attr,omitempty"`
}
type packetFormatter interface {

Loading…
Cancel
Save