master
Henry Varona 2018-09-15 21:59:39 -04:00
commit 3fb3dc9cac
2 changed files with 7 additions and 5 deletions

View File

@ -196,15 +196,15 @@ public class ImportAccountOptionsFragment extends DialogFragment {
} }
}); });
FileServiceRequests.getInstance().addRequest(importBackupRequest);
/* /*
* Show loading dialog * Show loading dialog
* */ * */
crystalDialog = new CrystalDialog((Activity) getContext()); crystalDialog = new CrystalDialog((Activity) getContext());
crystalDialog.setText(getContext().getString(R.string.Creating_backup_from_file)); crystalDialog.setText(getContext().getString(R.string.Creating_backup_from_file));
crystalDialog.progress(); crystalDialog.progress();
crystalDialog.show(); crystalDialog.show();
FileServiceRequests.getInstance().addRequest(importBackupRequest);
} }
}) })
.setNegativeButton("Cancel", .setNegativeButton("Cancel",

View File

@ -37,7 +37,9 @@ public abstract class CryptoNetInfoRequest {
} }
protected void _fireOnCarryOutEvent(){ protected void _fireOnCarryOutEvent(){
listener.onCarryOut(); if (listener != null) {
listener.onCarryOut();
}
CryptoNetInfoRequests.getInstance().removeRequest(this); CryptoNetInfoRequests.getInstance().removeRequest(this);
} }