return null if from ist not set in abstract stanza

This commit is contained in:
iNPUTmice 2014-11-09 16:18:53 +01:00
parent 8437dbd480
commit 87c4fd9050
1 changed files with 17 additions and 12 deletions

View File

@ -11,20 +11,25 @@ public class AbstractStanza extends Element {
}
public Jid getTo() {
try {
return Jid.fromString(getAttribute("to"));
} catch (final InvalidJidException e) {
return null;
}
}
try {
return Jid.fromString(getAttribute("to"));
} catch (final InvalidJidException e) {
return null;
}
}
public Jid getFrom() {
try {
return Jid.fromString(getAttribute("from"));
} catch (final InvalidJidException e) {
return null;
}
}
String from = getAttribute("from");
if (from == null) {
return null;
} else {
try {
return Jid.fromString(from);
} catch (final InvalidJidException e) {
return null;
}
}
}
public String getId() {
return this.getAttribute("id");