* small fixes in address generation, mu:contact->string

This commit is contained in:
djcb
2012-05-04 14:52:45 +03:00
parent 3bb3514198
commit 1bbca9e1eb
3 changed files with 6 additions and 3 deletions

View File

@ -564,7 +564,10 @@ fill_contact (MuMsgContact *self, InternetAddress *addr,
else
self->address = NULL;
return TRUE;
/* note, the address could NULL e.g. when the recipient is something like
* 'Undisclosed recipients'
*/
return self->address != NULL;
}