Merge "Move content later button doesn't work on Migration Wizard"

This commit is contained in:
Treehugger Robot
2018-10-12 20:52:31 +00:00
committed by Gerrit Code Review

View File

@@ -85,9 +85,13 @@ public class StorageWizardMigrateConfirm extends StorageWizardBase {
FeatureFactory.getFactory(this).getMetricsFeatureProvider().action(this, FeatureFactory.getFactory(this).getMetricsFeatureProvider().action(this,
MetricsEvent.ACTION_STORAGE_MIGRATE_LATER); MetricsEvent.ACTION_STORAGE_MIGRATE_LATER);
if (mDisk != null) {
final Intent intent = new Intent(this, StorageWizardReady.class); final Intent intent = new Intent(this, StorageWizardReady.class);
intent.putExtra(EXTRA_MIGRATE_SKIP, true); intent.putExtra(EXTRA_MIGRATE_SKIP, true);
startActivity(intent); startActivity(intent);
} else {
finishAffinity();
}
} }
@Override @Override