calendar: Guard against null passed to setBody()
This commit is contained in:
parent
4cb7df67b7
commit
9becb3985d
@ -1044,7 +1044,8 @@ const Message = new Lang.Class({
|
|||||||
|
|
||||||
setBody: function(text) {
|
setBody: function(text) {
|
||||||
this._bodyText = text;
|
this._bodyText = text;
|
||||||
this.bodyLabel.setMarkup(text.replace(/\n/g, ' '), this._useBodyMarkup);
|
this.bodyLabel.setMarkup(text ? text.replace(/\n/g, ' ') : '',
|
||||||
|
this._useBodyMarkup);
|
||||||
},
|
},
|
||||||
|
|
||||||
setUseBodyMarkup: function(enable) {
|
setUseBodyMarkup: function(enable) {
|
||||||
|
Loading…
Reference in New Issue
Block a user