Fixed repeated request for create first account when all the accounts where removed after the app was left in an actitivy not root in its task

This commit is contained in:
David A. Velasco 2013-06-13 11:35:17 +02:00
parent cf0c96b200
commit 3440b8a1d2

View file

@ -224,7 +224,13 @@ public abstract class FileActivity extends SherlockFragmentActivity {
Log_OC.e(TAG, "Account creation callback with null bundle");
}
if (mAccount == null) {
finish();
if (isTaskRoot()) {
Log_OC.e(TAG, "FINISHING");
finish();
} else {
Log_OC.e(TAG, "MOVING BACK");
moveTaskToBack(true);
}
}
}