From 6c594b6f5f22a3718b9f59c95854ef4cdd4ad614 Mon Sep 17 00:00:00 2001 From: macdonst Date: Tue, 19 Jun 2012 11:29:00 -0400 Subject: [PATCH] Fixing merge error in FileUtils.notifyDelete --- framework/src/org/apache/cordova/FileUtils.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/framework/src/org/apache/cordova/FileUtils.java b/framework/src/org/apache/cordova/FileUtils.java index 32b3c05e..1dc6e052 100755 --- a/framework/src/org/apache/cordova/FileUtils.java +++ b/framework/src/org/apache/cordova/FileUtils.java @@ -225,7 +225,7 @@ public class FileUtils extends Plugin { String newFilePath = stripFileProtocol(filePath); int result = this.cordova.getActivity().getContentResolver().delete(MediaStore.Images.Media.EXTERNAL_CONTENT_URI, MediaStore.Images.Media.DATA + " = ?", - new String[] { filePath }); + new String[] { newFilePath }); } /**