Merge pull request #31 from sbourdelin/typo_and_fix
model.js: fix an error when parsing null string
This commit is contained in:
commit
c71d1dfb6a
1 changed files with 1 additions and 1 deletions
|
@ -51,7 +51,7 @@ models.service('models', ['colors', function(colors) {
|
|||
var buffer = message['objects'][0]['content'][0]['buffer'];
|
||||
text_elements = _.union(prefix, text);
|
||||
text_elements =_.map(text_elements, function(text_element) {
|
||||
if ('fg' in text_element) {
|
||||
if (text_element && ('fg' in text_element)) {
|
||||
text_element['fg'] = colors.prepareCss(text_element['fg']);
|
||||
}
|
||||
// TODO: parse background as well
|
||||
|
|
Loading…
Reference in a new issue