Cordova imagePicker plugin returns cached image too

Hello !
I have to make a form to post some user data with multiple images so I am using this plugin. My Problem is that if I select one image that I get a cached image too in the console even if I have set “cache view= false”.

var options = {
maximumImagesCount: 10,
width: 800,
height: 800,
quality: 80
};
$cordovaImagePicker.getPictures(options)
.then(function (results) {
for (var i = 0; i < results.length; i++) {
console.log('Image URI: ’ + results[i]);
}
}, function(error) {
// error getting photos
});
});

Error

4 738260 log Image URI: file:///storage/sdcard0/WhatsApp/Media/WhatsA
pp%20Images/IMG-20160426-WA0010.jpg
5 738263 log Image URI: file:///data/data/com.ionicframework.map/cach
e/IMG-20160426-WA0010-774845115.jpg

here I have selected only one image and I am getting a cached image too. But I want to get only one.
So can anybody tell how to solve this?