diff --git a/NEWS b/NEWS index a95b3038993a9be3aa2272d6167c86e893125292..e12228b6d5f17fcac26c51eaf7fb925b21110d79 100644 --- a/NEWS +++ b/NEWS @@ -19,6 +19,7 @@ Bugs fixed: • Bug 686673 — Build error: libsocialweb backend doesn't implement new Backend functions • Bug 688834 — getting properties creates data structures over and over again +• Bug 688923 — remove URLs (blog, free/busy, video, home page) API changes: • Add Backend.enable_persona_store and disable_persona_store. diff --git a/backends/eds/lib/edsf-persona-store.vala b/backends/eds/lib/edsf-persona-store.vala index bc4e4d962e635c3749ee243f48fcf0c0b5593d64..ee21d06e7390c470d04a256d552d745c7e83c418 100644 --- a/backends/eds/lib/edsf-persona-store.vala +++ b/backends/eds/lib/edsf-persona-store.vala @@ -1469,6 +1469,10 @@ public class Edsf.PersonaStore : Folks.PersonaStore { var vcard = (E.VCard) contact; vcard.remove_attributes (null, "X-URIS"); + contact.set (ContactField.HOMEPAGE_URL, null); + contact.set (ContactField.VIDEO_URL, null); + contact.set (ContactField.BLOG_URL, null); + contact.set (ContactField.FREEBUSY_URL, null); foreach (var u in urls) {