From 55c4f30db73b6078d8d0b8bd74a038d39f096b04 Mon Sep 17 00:00:00 2001 From: Matthew Barnes Date: Thu, 27 May 2010 07:49:07 -0400 Subject: Bug 619811 - Bogus "Cannot update from version 0.0" dialog on start --- shell/e-shell-migrate.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/shell/e-shell-migrate.c b/shell/e-shell-migrate.c index d26c9a83d1..45ed5a1b95 100644 --- a/shell/e-shell-migrate.c +++ b/shell/e-shell-migrate.c @@ -49,6 +49,10 @@ shell_migrate_attempt (EShell *shell, parent = e_shell_get_active_window (shell); backends = e_shell_get_shell_backends (shell); + /* New user accounts have nothing to migrate. */ + if (major == 0 && minor == 0 && micro == 0) + return TRUE; + /* We only support migrating from version 2 now. */ if (major < 2) { gchar *version; -- cgit v1.2.3