allow deletion of all files

This commit is contained in:
Daniel Gultsch 2022-03-10 12:39:43 +01:00
parent ceceead505
commit 56f01c29b9
2 changed files with 7 additions and 6 deletions

View File

@ -362,8 +362,12 @@ public class FileBackend {
}
private static boolean weOwnFileLollipop(final Uri uri) {
final String path = uri.getPath();
if (path == null) {
return false;
}
try {
File file = new File(uri.getPath());
File file = new File(path);
FileDescriptor fd =
ParcelFileDescriptor.open(file, ParcelFileDescriptor.MODE_READ_ONLY)
.getFileDescriptor();

View File

@ -1184,11 +1184,8 @@ public class ConversationFragment extends XmppFragment implements EditMessage.Ke
cancelTransmission.setVisible(true);
}
if (m.isFileOrImage() && !deleted && !cancelable) {
final String path = m.getRelativeFilePath();
if (path == null || !path.startsWith("/")) {
deleteFile.setVisible(true);
deleteFile.setTitle(activity.getString(R.string.delete_x_file, UIHelper.getFileDescriptionString(activity, m)));
}
deleteFile.setVisible(true);
deleteFile.setTitle(activity.getString(R.string.delete_x_file, UIHelper.getFileDescriptionString(activity, m)));
}
if (showError) {
showErrorMessage.setVisible(true);