fixed null in shared link

This commit is contained in:
Daniel Gultsch 2014-05-16 12:07:58 +02:00
parent afd1ba657a
commit 1cf1e62e30

View file

@ -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;