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

Commit 848ead64 authored by tmfang's avatar tmfang Committed by android-build-merger
Browse files

Merge "Fix no apps shown on app info screen" into qt-dev

am: 11e4847d

Change-Id: Ia02de4e31fb573ed77b960ed357d8de39c27e8fd
parents 3c1ce4f3 11e4847d
Loading
Loading
Loading
Loading
+7 −1
Original line number Diff line number Diff line
@@ -1169,10 +1169,16 @@ public class ManageApplications extends InstrumentedFragment
            });
        }

        public void filterSearch(String query) {
        @VisibleForTesting
        void filterSearch(String query) {
            if (mSearchFilter == null) {
                mSearchFilter = new SearchFilter();
            }
            // If we haven't load apps list completely, don't filter anything.
            if(mOriginalEntries == null) {
                Log.w(TAG, "Apps haven't loaded completely yet, so nothing can be filtered");
                return;
            }
            mSearchFilter.filter(query);
        }