This commit is contained in:
cx uname 2013-05-16 11:31:23 +04:00
parent 709f506058
commit 969d25fdb5
1 changed files with 7 additions and 5 deletions

View File

@ -80,8 +80,9 @@ start:
case *xmpp.ClientPresence:
PresenceHandler(Conn, t)
case *xmpp.ClientMessage:
if len(t.Delay.Stamp) == 0 && len(t.Subject) == 0 && GetNick(t.From) != name {
if len(t.Delay.Stamp) == 0 && len(t.Subject) == 0 {
log.Println(t)
if GetNick(t.From) != name {
if t.Type == "groupchat" {
go MessageHandler(Conn, t)
} else if xmpp.RemoveResourceFromJid(strings.ToLower(t.From)) == me {
@ -90,6 +91,7 @@ start:
}
}
}
}
log.Println(Conn.Close(), "\n\t", "wtf am I doing here?")
time.Sleep(5 * time.Second)
goto start