Change empty string with dash

This commit is contained in:
Karim Abou Zeid 2017-12-24 13:58:44 +01:00 committed by GitHub
commit c24538b58f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -80,7 +80,7 @@ public class HorizontalAlbumAdapter extends AlbumAdapter {
if(year > 0) {
return String.valueOf(year);
}
return "";
return "-";
}
@Override