Switch to using stripFileProtocol in FileUtils.notifyDelete

This commit is contained in:
macdonst 2012-05-11 16:43:00 -04:00
parent 6a628f7f2d
commit eb66eb02cb

View File

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