Revert "this is hopefully fixed with 5926ba234c562c1731de1a6f080b4c383260fc19"
This reverts commit 103572b9ef0dc79f8e454f69fa6e317161321b70.
This commit is contained in:
parent
06b5cfdafa
commit
55fa5604d3
@ -516,6 +516,8 @@ public class MediaAdapter
|
||||
if (mFields.length > 1) {
|
||||
String line1 = cursor.getString(1);
|
||||
String line2 = cursor.getString(2);
|
||||
if(line1 == null) { line1 = "???"; }
|
||||
if(line2 == null) { line2 = "???"; }
|
||||
SpannableStringBuilder sb = new SpannableStringBuilder(line1);
|
||||
sb.append('\n');
|
||||
sb.append(line2);
|
||||
@ -524,6 +526,7 @@ public class MediaAdapter
|
||||
holder.title = line1;
|
||||
} else {
|
||||
String title = cursor.getString(1);
|
||||
if(title == null) { title = "???"; }
|
||||
holder.text.setText(title);
|
||||
holder.title = title;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user