Skip to content
Snippets Groups Projects
Commit b9d243be authored by Geoffrey Métais's avatar Geoffrey Métais
Browse files

Decode title

parent 4323a4b0
No related branches found
No related tags found
No related merge requests found
......@@ -246,7 +246,7 @@ public class MediaWrapper extends MediaLibraryItem implements Parcelable {
mWidth = width;
mHeight = height;
mTitle = title != null ? title.trim() : null;
mTitle = title != null ? Uri.decode(title.trim()) : null;
mArtist = artist != null ? artist.trim() : null;
mGenre = genre != null ? genre.trim() : null;
mAlbum = album != null ? album.trim() : null;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment