Fix SAF mime-type

This commit is contained in:
Gabriel 2023-12-21 23:02:06 -04:00
parent cad4174845
commit b2c653ed1b

View file

@ -54,7 +54,7 @@ public class FileUtils {
DocumentFile folder = parseFile(path);
if (folder.findFile(name) != null)
return true;
return folder.createFile("application/octet-stream", name) != null;
return folder.createFile("", name) != null;
}
public static InputStream getInputStream(String path) throws FileNotFoundException {