Properly querying the Andoid content DB when deleteing an image file

This commit is contained in:
macdonst 2012-05-08 15:23:00 -04:00
parent bafa438ce3
commit c2631ee0f7

View File

@ -220,9 +220,10 @@ public class FileUtils extends Plugin {
* @param filePath the path to check
*/
private void notifyDelete(String filePath) {
String newFilePath = filePath.substring(7);
int result = this.ctx.getContentResolver().delete(MediaStore.Images.Media.EXTERNAL_CONTENT_URI,
MediaStore.Images.Media.DATA + " = ?",
new String[] {filePath});
new String[] {newFilePath});
}
/**