Uri to safe string

This commit is contained in:
M66B
2023-12-11 22:04:44 +01:00
parent c4a1384232
commit 894736ef18
3 changed files with 42 additions and 2 deletions

View File

@@ -64,7 +64,7 @@ public class NoStreamException extends SecurityException {
TextView tvUri = dview.findViewById(R.id.tvUri);
ImageButton ibInfo = dview.findViewById(R.id.ibInfo);
tvUri.setText(uri == null ? null : uri.toString());
tvUri.setText(uri == null ? null : UriHelper.toSafeString(uri));
ibInfo.setOnClickListener(new View.OnClickListener() {
@Override