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

Commit 86cfe518 authored by Sergey Poromov's avatar Sergey Poromov Committed by Android (Google) Code Review
Browse files

Merge "Fix BackupManager to really send MSG_RESULT when onResult is called."

parents 04415b47 4b51d99a
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -538,7 +538,7 @@ public class BackupManager {
        @Override
        public void onResult(String currentPackage, int status) {
            mHandler.sendMessage(
                mHandler.obtainMessage(MSG_FINISHED, status, 0, currentPackage));
                mHandler.obtainMessage(MSG_RESULT, status, 0, currentPackage));
        }

        @Override