mirror of
https://github.com/moparisthebest/Conversations
synced 2024-11-24 17:52:17 -05:00
fixed null in shared link
This commit is contained in:
parent
afd1ba657a
commit
1cf1e62e30
@ -341,8 +341,12 @@ public class Conversation extends AbstractEntity {
|
|||||||
}
|
}
|
||||||
|
|
||||||
public String getNextMessage() {
|
public String getNextMessage() {
|
||||||
|
if (this.nextMessage==null) {
|
||||||
|
return "";
|
||||||
|
} else {
|
||||||
return this.nextMessage;
|
return this.nextMessage;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
public void setNextMessage(String message) {
|
public void setNextMessage(String message) {
|
||||||
this.nextMessage = message;
|
this.nextMessage = message;
|
||||||
|
Loading…
Reference in New Issue
Block a user