Fixed bug with Astrid news dialog

pull/14/head
Sam Bosley 14 years ago
parent 7cf253339c
commit 7d2a392e95

@ -732,6 +732,7 @@ public class TaskListActivity extends ListActivity implements OnScrollListener,
super.onActivityResult(requestCode, resultCode, data);
if (!Preferences.getBoolean(R.string.p_showed_add_task_help, false)) {
HelpInfoPopover.showPopover(TaskListActivity.this, quickAddBox, R.string.help_popover_add_task, null);
Preferences.setBoolean(R.string.p_showed_add_task_help, true);

@ -178,6 +178,7 @@ public class StartupService {
upgradeService.performSecondaryUpgrade(context);
// perform startup activities in a background thread
final int finalLatestVersion = latestSetVersion;
new Thread(new Runnable() {
public void run() {
// start widget updating alarm
@ -206,7 +207,8 @@ public class StartupService {
gtasksSyncOnSaveService.initialize();
// get and display update messages
new UpdateMessageService().processUpdates(context);
if (finalLatestVersion != 0)
new UpdateMessageService().processUpdates(context);
// Check for feature flips
featureFlipper.updateFeatures();

Loading…
Cancel
Save