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

Commit e91a725c authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Automerger Merge Worker
Browse files

Merge "Fix AppPredictionService callbacks comparison" into tm-qpr-dev am: c2e3ec39

parents b0529089 c2e3ec39
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -328,7 +328,7 @@ public abstract class AppPredictionService extends Service {
                Slog.e(TAG, "Callback is null, likely the binder has died.");
                return false;
            }
            return mCallback.equals(callback);
            return mCallback.asBinder().equals(callback.asBinder());
        }

        public void destroy() {