diff options
author | Milan Crha <mcrha@redhat.com> | 2010-09-29 16:56:50 +0800 |
---|---|---|
committer | Milan Crha <mcrha@redhat.com> | 2010-09-29 16:56:50 +0800 |
commit | 5b154c62991000a2d6bab1c426f6bce4d95a658f (patch) | |
tree | e52520b8c8aa7e8a7abdd754d0e02c35033229ee | |
parent | 82f0d573e483ce11c03bb1e6e6461520882e0723 (diff) | |
download | gsoc2013-evolution-5b154c62991000a2d6bab1c426f6bce4d95a658f.tar.gz gsoc2013-evolution-5b154c62991000a2d6bab1c426f6bce4d95a658f.tar.zst gsoc2013-evolution-5b154c62991000a2d6bab1c426f6bce4d95a658f.zip |
Bug #604080 - Predefined account SSL not propagated to UI
-rw-r--r-- | mail/em-account-editor.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mail/em-account-editor.c b/mail/em-account-editor.c index f2776d6b56..08126ea592 100644 --- a/mail/em-account-editor.c +++ b/mail/em-account-editor.c @@ -3598,7 +3598,7 @@ emae_check_complete (EConfig *ec, const gchar *pageid, gpointer data) } if (ok && (pageid == NULL || !strcmp (pageid, "10.receive"))) { - if (emae->type == EMAE_PAGES && refresh) { + if (emae->type != EMAE_NOTEBOOK && refresh) { emae_refresh_providers (emae, &emae->priv->source); } ok = emae_service_complete (emae, &emae->priv->source); @@ -3608,7 +3608,7 @@ emae_check_complete (EConfig *ec, const gchar *pageid, gpointer data) } if (ok && (pageid == NULL || !strcmp (pageid, "30.send"))) { - if (emae->type == EMAE_PAGES && refresh) { + if (emae->type != EMAE_NOTEBOOK && refresh) { emae_refresh_providers (emae, &emae->priv->transport); } ok = emae_service_complete (emae, &emae->priv->transport); |