Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit f228f455 authored by Dianne Hackborn's avatar Dianne Hackborn Committed by Android Git Automerger
Browse files

am 17043db8: am 69e7fa8a: am 8d3a67a8: Merge "More maybe fix issue #22765972:...

am 17043db8: am 69e7fa8a: am 8d3a67a8: Merge "More maybe fix issue #22765972: Binder transactions running out..." into mnc-dev

* commit '17043db8':
  More maybe fix issue #22765972: Binder transactions running out...
parents fb4f4cd3 17043db8
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -292,7 +292,9 @@ public abstract class AsyncTask<Params, Progress, Result> {

                Process.setThreadPriority(Process.THREAD_PRIORITY_BACKGROUND);
                //noinspection unchecked
                return postResult(doInBackground(mParams));
                Result result = doInBackground(mParams);
                Binder.flushPendingCommands();
                return postResult(result);
            }
        };