Prevent crash

pull/156/head
M66B 6 years ago
parent 95b709e757
commit 55c65eca7f

@ -1673,6 +1673,8 @@ public class ActivityView extends ActivityBilling implements FragmentManager.OnB
if (TextUtils.isEmpty(name)) if (TextUtils.isEmpty(name))
name = Long.toString(attachment.id); name = Long.toString(attachment.id);
DocumentFile document = tree.createFile(attachment.type, name); DocumentFile document = tree.createFile(attachment.type, name);
if (document == null)
throw new FileNotFoundException(name);
ParcelFileDescriptor pfd = null; ParcelFileDescriptor pfd = null;
OutputStream os = null; OutputStream os = null;

Loading…
Cancel
Save