From 5c5e31bf39c0c88738571fcbce96b59573b40463 Mon Sep 17 00:00:00 2001 From: Arne Jans Date: Tue, 17 May 2011 00:52:19 +0200 Subject: [PATCH] forgot to actually set the latestSetVersion. Oops... --- astrid/src/com/todoroo/astrid/service/StartupService.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/astrid/src/com/todoroo/astrid/service/StartupService.java b/astrid/src/com/todoroo/astrid/service/StartupService.java index c0ffdb4ea..28225760c 100644 --- a/astrid/src/com/todoroo/astrid/service/StartupService.java +++ b/astrid/src/com/todoroo/astrid/service/StartupService.java @@ -109,7 +109,7 @@ public class StartupService { // read current version int latestSetVersion = 0; try { - AstridPreferences.getCurrentVersion(); + latestSetVersion = AstridPreferences.getCurrentVersion(); } catch (Exception e) { exceptionService.reportError("astrid-startup-version-read", e); //$NON-NLS-1$ }