some lag fixes and begin work on jingle

This commit is contained in:
2026-05-07 09:16:38 +01:00
parent 82aa2abfbd
commit 9593e7c041
5 changed files with 95 additions and 20 deletions
+15 -15
View File
@@ -10,21 +10,21 @@ import (
type VCard struct {
XMLName xml.Name `xml:"vcard-temp vCard"`
FirstName string `xml:"FN"`
LastName string `xml:"N>FAMILY"`
GivenName string `xml:"N>GIVEN"`
MiddleName string `xml:"N>MIDDLE"`
Nickname string `xml:"NICKNAME"`
URI string `xml:"URL"`
Birthday string `xml:"BDAY"`
OrgName string `xml:"ORG>ORGNAME"`
OrgUnit string `xml:"ORG>ORGUNIT"`
Title string `xml:"TITLE"`
Role string `xml:"ROLE"`
Description string `xml:"DESC"`
Jid string `xml:"JABBERID"`
Photo Photo `xml:"PHOTO"`
Email string `xml:"EMAIL>USERID"`
FirstName string `xml:"FN,omitempty"`
LastName string `xml:"N>FAMILY,omitempty"`
GivenName string `xml:"N>GIVEN,omitempty"`
MiddleName string `xml:"N>MIDDLE,omitempty"`
Nickname string `xml:"NICKNAME,omitempty"`
URI string `xml:"URL,omitempty"`
Birthday string `xml:"BDAY,omitempty"`
OrgName string `xml:"ORG>ORGNAME,omitempty"`
OrgUnit string `xml:"ORG>ORGUNIT,omitempty"`
Title string `xml:"TITLE,omitempty"`
Role string `xml:"ROLE,omitempty"`
Description string `xml:"DESC,omitempty"`
Jid string `xml:"JABBERID,omitempty"`
Photo Photo `xml:"PHOTO,omitempty"`
Email string `xml:"EMAIL>USERID,omitempty"`
ResultSet *stanza.ResultSet `xml:"set,omitempty"`
}