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

Commit 749334bf authored by Adam Powell's avatar Adam Powell Committed by Android (Google) Code Review
Browse files

Merge "Fix ChooserTarget app scoring" into mnc-dr-dev

parents a5917b71 77a533f5
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -920,7 +920,7 @@ public class ChooserActivity extends ResolverActivity {
        @Override
        public int compare(ChooserTarget lhs, ChooserTarget rhs) {
            // Descending order
            return (int) Math.signum(lhs.getScore() - rhs.getScore());
            return (int) Math.signum(rhs.getScore() - lhs.getScore());
        }
    }