From: Bharath Acharya Date: Thu, 9 Sep 2010 12:59:45 +0000 (+0530) Subject: Fixed - Unable to send mails using Evolution. X-Git-Tag: upstream/3.7.4~2616 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=7d6714c4a0da5f39e1df4c5a2ffc99aa2d190f81;p=platform%2Fupstream%2Fevolution-data-server.git Fixed - Unable to send mails using Evolution. Fixed the address regression. --- diff --git a/addressbook/libebook/e-destination.c b/addressbook/libebook/e-destination.c index e8066bf..0538b72 100644 --- a/addressbook/libebook/e-destination.c +++ b/addressbook/libebook/e-destination.c @@ -879,7 +879,7 @@ e_destination_get_address (const EDestination *dest) camel_address_decode (CAMEL_ADDRESS (addr), name); } iter = g_list_next (iter); - } + } priv->addr = camel_address_encode (CAMEL_ADDRESS (addr)); } else if (priv->raw) { if (camel_address_unformat (CAMEL_ADDRESS (addr), priv->raw)) @@ -896,6 +896,8 @@ e_destination_get_address (const EDestination *dest) else /* this case loses i suppose, but there's nothing we can do here */ camel_address_decode (CAMEL_ADDRESS (addr), name); + + priv->addr = camel_address_encode (CAMEL_ADDRESS (addr)); } g_object_unref (addr);