Fix color in Album and Artist list

This commit is contained in:
Hemanth S 2020-05-09 19:11:20 +05:30
parent 2d3ad54ab5
commit 2f42ce1638
4 changed files with 17 additions and 37 deletions

View file

@ -74,7 +74,7 @@ public class PlaylistsUtil {
}
} catch (SecurityException e) {
e.printStackTrace();
Toast.makeText(context, "Don't have permission for adding to playlist", Toast.LENGTH_SHORT).show();
Toast.makeText(context, "Unable to add music to playlist due to Android 10 limitations", Toast.LENGTH_SHORT).show();
}
}
if (id == -1) {
@ -140,7 +140,7 @@ public class PlaylistsUtil {
}
} catch (SecurityException ignored) {
ignored.printStackTrace();
Toast.makeText(context, "Don't have permission for adding to playlist", Toast.LENGTH_SHORT).show();
Toast.makeText(context, "Unable to add music to playlist due to Android 10 limitations", Toast.LENGTH_SHORT).show();
}
}