add catch for missing toast message

This commit is contained in:
Joe Fleming 2015-11-24 11:23:16 -06:00
parent c9c0f34efe
commit 4fdbc265c8

View file

@ -122,6 +122,10 @@ define(function (require) {
common.debug('toast message clear');
return messages;
}
})
.catch(function () {
common.debug('toast message not found');
return;
});
});
}