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,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) {