fixed #342 - otr with facebook and other services without resources
This commit is contained in:
parent
01389e900b
commit
b8d289a932
|
@ -244,7 +244,7 @@ public class Message extends AbstractEntity {
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setPresence(String presence) {
|
public void setPresence(String presence) {
|
||||||
if (presence == null || presence.isEmpty()) {
|
if (presence == null) {
|
||||||
this.counterpart = this.counterpart.split("/")[0];
|
this.counterpart = this.counterpart.split("/")[0];
|
||||||
} else {
|
} else {
|
||||||
this.counterpart = this.counterpart.split("/")[0] + "/" + presence;
|
this.counterpart = this.counterpart.split("/")[0] + "/" + presence;
|
||||||
|
@ -260,7 +260,11 @@ public class Message extends AbstractEntity {
|
||||||
if (counterparts.length == 2) {
|
if (counterparts.length == 2) {
|
||||||
return counterparts[1];
|
return counterparts[1];
|
||||||
} else {
|
} else {
|
||||||
return null;
|
if (this.counterpart.contains("/")) {
|
||||||
|
return "";
|
||||||
|
} else {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue