~ubuntu-branches/ubuntu/saucy/geary/saucy-updates

« back to all changes in this revision

Viewing changes to src/client/gnome-keyring-mediator.vala

  • Committer: Package Import Robot
  • Author(s): Sebastien Bacher
  • Date: 2013-04-10 10:57:25 UTC
  • mfrom: (1.1.5)
  • Revision ID: package-import@ubuntu.com-20130410105725-f532n2cfre2sq6mf
Tags: 0.3.1-0ubuntu1
* New upstream bugfix version:
  - Reduced CPU and memory footprint
  - Account dialog bugs fixed
  - Stability improvements

Show diffs side-by-side

added added

removed removed

Lines of Context:
63
63
        out string? imap_password, out string? smtp_password,
64
64
        out bool imap_remember_password, out bool smtp_remember_password) throws Error {
65
65
        bool first_try = !account_information.imap_credentials.is_complete() ||
66
 
            !account_information.smtp_credentials.is_complete();
 
66
            (account_information.smtp_credentials != null &&
 
67
            !account_information.smtp_credentials.is_complete());
67
68
        
68
69
        PasswordDialog password_dialog = new PasswordDialog(account_information, first_try,
69
70
            services);