diff --git a/project/src/DataDownloader.java b/project/src/DataDownloader.java index 4528fe0e4..6a79e26b1 100644 --- a/project/src/DataDownloader.java +++ b/project/src/DataDownloader.java @@ -204,7 +204,13 @@ class DataDownloader extends Thread { try { (new File( outFilesDir )).mkdirs(); - } catch( SecurityException e ) { }; + OutputStream out = new FileOutputStream( getOutFilePath(".nomedia") ); + out.flush(); + out.close(); + } + catch( SecurityException e ) {} + catch( FileNotFoundException e ) {} + catch( IOException e ) {}; } HttpResponse response = null;