Remove extra whitespace from artist line
This commit is contained in:
parent
4f617ed270
commit
7e56cba6e5
|
@ -1027,9 +1027,9 @@ public class NowPlayingFragment extends SubsonicFragment implements OnGestureLis
|
|||
if(entry.getAlbum() != null) {
|
||||
String artist = "";
|
||||
if (entry.getArtist() != null) {
|
||||
artist = currentPlaying.getSong().getArtist() + " - ";
|
||||
artist = currentPlaying.getSong().getArtist().trim() + " - ";
|
||||
}
|
||||
statusTextView.setText(artist + entry.getAlbum());
|
||||
statusTextView.setText(artist + entry.getAlbum().trim());
|
||||
} else {
|
||||
statusTextView.setText(null);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue