Fixed crash when saving albums and the Clover folder didn't exist yet.

captchafix
Florens Douwes 11 years ago
parent 372f74b2d1
commit d52d59ab9d
  1. 2
      Clover/src/org/floens/chan/utils/ImageSaver.java

@ -55,6 +55,8 @@ public class ImageSaver {
folder = Environment.getExternalStoragePublicDirectory(folderPath); folder = Environment.getExternalStoragePublicDirectory(folderPath);
} }
folder.mkdirs();
final String finalFolderPath = folderPath; final String finalFolderPath = folderPath;
String text = context.getString(R.string.download_confirm).replace("COUNT", Integer.toString(list.size())) String text = context.getString(R.string.download_confirm).replace("COUNT", Integer.toString(list.size()))
.replace("FOLDER", folderPath); .replace("FOLDER", folderPath);

Loading…
Cancel
Save