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() {
|
||||
return this.nextMessage;
|
||||
if (this.nextMessage==null) {
|
||||
return "";
|
||||
} else {
|
||||
return this.nextMessage;
|
||||
}
|
||||
}
|
||||
|
||||
public void setNextMessage(String message) {
|
||||
|
|
Loading…
Reference in New Issue