fixed #342 - otr with facebook and other services without resources

This commit is contained in:
iNPUTmice 2014-09-04 19:56:37 +02:00
parent 01389e900b
commit b8d289a932
1 changed files with 6 additions and 2 deletions

View File

@ -244,7 +244,7 @@ public class Message extends AbstractEntity {
}
public void setPresence(String presence) {
if (presence == null || presence.isEmpty()) {
if (presence == null) {
this.counterpart = this.counterpart.split("/")[0];
} else {
this.counterpart = this.counterpart.split("/")[0] + "/" + presence;
@ -260,7 +260,11 @@ public class Message extends AbstractEntity {
if (counterparts.length == 2) {
return counterparts[1];
} else {
return null;
if (this.counterpart.contains("/")) {
return "";
} else {
return null;
}
}
}