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

Commit 47fa8151 authored by Josh Guilfoyle's avatar Josh Guilfoyle
Browse files

ESPRESSO-1017: Fixed order of theme ringtones.

CR: Dirk Sigurdson
CR: Ed Carrigan
parent 6f00b586
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -537,7 +537,7 @@ public class RingtoneManager {
        if ((mType & TYPE_RINGTONE) != 0) {
            return query(Uri.parse("content://com.tmobile.thememanager.themes/themes"),
                    new String[] { "_id", "ringtone_name", "ringtone_uri",
                        "ringtone_name AS " + MEDIA_COLUMNS[3] },
                        "ringtone_name_key AS " + MEDIA_COLUMNS[3] },
                    getThemeWhereClause("ringtone_uri"), null, MEDIA_COLUMNS[3]);
        } else {
            return null;
@@ -548,7 +548,7 @@ public class RingtoneManager {
        if ((mType & TYPE_NOTIFICATION) != 0) {
            return query(Uri.parse("content://com.tmobile.thememanager.themes/themes"),
                    new String[] { "_id", "notif_ringtone_name", "notif_ringtone_uri",
                        "notif_ringtone_name AS " + MEDIA_COLUMNS[3] },
                        "notif_ringtone_name_key AS " + MEDIA_COLUMNS[3] },
                    getThemeWhereClause("notif_ringtone_uri"), null, MEDIA_COLUMNS[3]);
        } else {
            return null;