gofmt
This commit is contained in:
parent
501c1a7daa
commit
e2edbe37ea
|
@ -1009,8 +1009,9 @@ func (c *Client) OpenPhotoFile(photoFile *client.File, priority int32) (*os.File
|
||||||
file, err := os.Open(path)
|
file, err := os.Open(path)
|
||||||
if err == nil {
|
if err == nil {
|
||||||
return file, path, nil
|
return file, path, nil
|
||||||
|
} else
|
||||||
// obtain the photo right now if still not downloaded
|
// obtain the photo right now if still not downloaded
|
||||||
} else if !photoFile.Local.IsDownloadingCompleted {
|
if !photoFile.Local.IsDownloadingCompleted {
|
||||||
tdFile, tdErr := c.DownloadFile(photoFile.Id, priority, true)
|
tdFile, tdErr := c.DownloadFile(photoFile.Id, priority, true)
|
||||||
if tdErr == nil {
|
if tdErr == nil {
|
||||||
path = tdFile.Local.Path
|
path = tdFile.Local.Path
|
||||||
|
|
|
@ -76,7 +76,7 @@ func SetNickname(to string, from string, nickname string, component *xmpp.Compon
|
||||||
Extensions: []stanza.MsgExtension{
|
Extensions: []stanza.MsgExtension{
|
||||||
stanza.PubSubEvent{
|
stanza.PubSubEvent{
|
||||||
EventElement: stanza.ItemsEvent{
|
EventElement: stanza.ItemsEvent{
|
||||||
Node: NSNick,
|
Node: NSNick,
|
||||||
Items: []stanza.ItemEvent{
|
Items: []stanza.ItemEvent{
|
||||||
stanza.ItemEvent{
|
stanza.ItemEvent{
|
||||||
Any: &stanza.Node{
|
Any: &stanza.Node{
|
||||||
|
|
|
@ -474,7 +474,7 @@ func makeVCardPayload(typ byte, id, fn, photo, nickname, given, family, tel, inf
|
||||||
Node: NodeVCard4,
|
Node: NodeVCard4,
|
||||||
List: []stanza.Item{
|
List: []stanza.Item{
|
||||||
stanza.Item{
|
stanza.Item{
|
||||||
Id: id,
|
Id: id,
|
||||||
Any: &stanza.Node{
|
Any: &stanza.Node{
|
||||||
XMLName: xml.Name{Local: "vcard"},
|
XMLName: xml.Name{Local: "vcard"},
|
||||||
Attrs: []xml.Attr{
|
Attrs: []xml.Attr{
|
||||||
|
|
Loading…
Reference in a new issue