fixed null in shared link
This commit is contained in:
parent
afd1ba657a
commit
1cf1e62e30
|
@ -341,7 +341,11 @@ public class Conversation extends AbstractEntity {
|
||||||
}
|
}
|
||||||
|
|
||||||
public String getNextMessage() {
|
public String getNextMessage() {
|
||||||
return this.nextMessage;
|
if (this.nextMessage==null) {
|
||||||
|
return "";
|
||||||
|
} else {
|
||||||
|
return this.nextMessage;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setNextMessage(String message) {
|
public void setNextMessage(String message) {
|
||||||
|
|
Loading…
Reference in a new issue