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

Commit c0c2bc21 authored by Josh Guilfoyle's avatar Josh Guilfoyle
Browse files

ESPRESSO-1021: Don't show default theme ringtones.

These ringtones are a duplication of the actual system defaults which
are provided elsewhere.

CR: Dirk Sigurdson
CR: Ed Carrigan
parent 47fa8151
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -525,7 +525,8 @@ public class RingtoneManager {
    }

    private String getThemeWhereClause(String uriColumn) {
        String clause = uriColumn + " IS NOT NULL";
        /* Filter out themes with no ringtone and the default theme (which has no package). */
        String clause = uriColumn + " IS NOT NULL AND LENGTH(theme_package) > 0";
        if (mIncludeDrm) {
            return clause;
        } else {