diff options
Diffstat (limited to 'mail/component-factory.c')
-rw-r--r-- | mail/component-factory.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/mail/component-factory.c b/mail/component-factory.c index d7fb1ee8f9..6b8d8a4984 100644 --- a/mail/component-factory.c +++ b/mail/component-factory.c @@ -128,8 +128,10 @@ create_view (EvolutionShellComponent *shell_component, corba_shell = bonobo_object_corba_objref (BONOBO_OBJECT (shell_client)); if (g_strcasecmp (folder_type, "mail") == 0) { - /* hack-tastic! */ - if (strstr (physical_uri, "noselect=yes")) + CamelURL *url; + + url = camel_url_new (physical_uri, NULL); + if (url && !g_strcasecmp (camel_url_get_param (url, "noselect"), "yes")) control = create_noselect_control (); else control = folder_browser_factory_new_control (physical_uri, |