fix iq - get after refactoring routing on #55

This commit is contained in:
genofire 2019-06-20 11:36:22 +02:00 committed by Mickaël Rémond
parent 1a7aa94bae
commit 44681e8053

View file

@ -58,6 +58,10 @@ func discoInfo(c xmpp.Sender, p xmpp.Packet, opts xmpp.ComponentOptions) {
if !ok {
return
}
if iq.Type != "get" {
return
}
iqResp := xmpp.NewIQ("result", iq.To, iq.From, iq.Id, "en")
identity := xmpp.Identity{
@ -89,13 +93,13 @@ func discoItems(c xmpp.Sender, p xmpp.Packet) {
if !ok {
return
}
discoItems, ok := iq.Payload.(*xmpp.DiscoItems)
if !ok {
if iq.Type != "get" {
return
}
if iq.Type != "get" {
discoItems, ok := iq.Payload.(*xmpp.DiscoItems)
if !ok {
return
}