]> git.ktnx.net Git - mobile-ledger.git/commitdiff
do not force refreshing spinner during transaction description refresh
authorDamyan Ivanov <dam+mobileledger@ktnx.net>
Sat, 1 Aug 2020 12:58:31 +0000 (15:58 +0300)
committerDamyan Ivanov <dam+mobileledger@ktnx.net>
Sat, 1 Aug 2020 12:58:31 +0000 (15:58 +0300)
it appears as if the general refresh runs twice and transaction description runs in non-exclusive
transaction and doesn't interfere with e.g. new transaction entry (where there is a lookup for
transaction descriptions)

app/src/main/java/net/ktnx/mobileledger/async/RefreshDescriptionsTask.java

index 4276e97df79081090c2fc9b2bb84656a87d171c4..50e70479691623cb6bc7036a88a28ec8ac5ea260 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright © 2019 Damyan Ivanov.
+ * Copyright © 2020 Damyan Ivanov.
  * This file is part of MoLe.
  * MoLe is free software: you can distribute it and/or modify it
  * under the term of the GNU General Public License as published by
@@ -22,7 +22,6 @@ import android.database.sqlite.SQLiteDatabase;
 import android.os.AsyncTask;
 
 import net.ktnx.mobileledger.App;
-import net.ktnx.mobileledger.model.Data;
 
 import java.util.HashMap;
 import java.util.Map;
@@ -37,7 +36,7 @@ public class RefreshDescriptionsTask extends AsyncTask<Void, Void, Void> {
         debug("descriptions", "Starting refresh");
         SQLiteDatabase db = App.getDatabase();
 
-        Data.backgroundTaskStarted();
+//        Data.backgroundTaskStarted();
         try {
             db.beginTransactionNonExclusive();
             try {
@@ -65,7 +64,7 @@ public class RefreshDescriptionsTask extends AsyncTask<Void, Void, Void> {
             }
         }
         finally {
-            Data.backgroundTaskFinished();
+//            Data.backgroundTaskFinished();
             debug("descriptions", "Refresh done");
         }