Some fixes

This commit is contained in:
tom79 2019-08-07 09:47:16 +02:00
parent fc23a20910
commit 9051d9114b
1 changed files with 2 additions and 2 deletions

View File

@ -74,13 +74,13 @@ public class BackupStatusInDataBaseService extends IntentService {
@Override
protected void onHandleIntent(@Nullable Intent intent) {
boolean toastMessage = false;
boolean toastMessage = true;
String userId = null;
String instance = null;
if( intent != null){
userId = intent.getStringExtra("userId");
instance = intent.getStringExtra("instance");
toastMessage = true;
toastMessage = false;
}
SharedPreferences sharedpreferences = getSharedPreferences(Helper.APP_PREFS, Context.MODE_PRIVATE);
if( userId == null || instance == null) {