1
0
mirror of https://codeberg.org/tom79/Fedilab synced 2025-02-01 03:46:53 +01:00

Fix saving media

This commit is contained in:
Thomas 2022-11-19 17:59:26 +01:00
parent aa4aefe9dc
commit 90ed830b33

View File

@ -143,10 +143,11 @@ public class MediaHelper {
public void onResourceReady(@NotNull File file, Transition<? super File> transition) {
final String fileName = URLUtil.guessFileName(url, null, null);
File path = Environment.getExternalStoragePublicDirectory(Environment.DIRECTORY_PICTURES);
final String targeted_folder = path + "/" + context.getString(R.string.app_name);
if (!new File(targeted_folder).exists()) {
new File(targeted_folder).mkdir();
File targeted_folder = new File(path, context.getString(R.string.app_name));
if (!targeted_folder.exists()) {
targeted_folder.mkdir();
}
FileInputStream fis = null;
FileOutputStream fos = null;