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

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

Merge "Fix SmartspaceService callback comparison." into tm-qpr-dev am: 7f47d9d4

parents 193abff1 7f47d9d4
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -302,7 +302,7 @@ public abstract class SmartspaceService 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());
        }

        @Override