Skip to content

Commit

Permalink
Fix loading dynamic compose window if sent-mail value is empty
Browse files Browse the repository at this point in the history
  • Loading branch information
slusarz committed Nov 19, 2014
1 parent 017c48f commit 882d2b2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion imp/js/compose-dimp.js
Expand Up @@ -193,7 +193,7 @@ var DimpCompose = {
}

if (!l) {
l = k.opts.data.find(function(f) {
l = (k.opts.data || []).find(function(f) {
return f.v == s;
});

Expand Down

0 comments on commit 882d2b2

Please sign in to comment.