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

Commit 959a9f54 authored by Sunny Goyal's avatar Sunny Goyal
Browse files

Fixing wrong diffing logic in AdapterItem

Bug: 232932442
Test: Verified on device
Change-Id: I87eae4c238a7b2d9749859307d253822916bb31c
parent 202ac414
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -119,7 +119,7 @@ public abstract class BaseAllAppsAdapter<T extends Context & ActivityContext> ex
         * Returns true if the items represent the same object
         */
        public boolean isSameAs(AdapterItem other) {
            return (other.viewType != viewType) && (other.getClass() == getClass());
            return (other.viewType == viewType) && (other.getClass() == getClass());
        }

        /**