Calendar-Phonegap Plugin delete event issue for ios

I am adding an event :

var startDate = new Date(2015, 4, 15, 18, 30, 0, 0, 0); // beware: month 0 = january, 11 = december
var endDate = new Date(2015, 4, 15, 18, 35, 0, 0, 0);
var title = "My nice event";
var eventLocation = "Home";
var notes = "Some notes about this event.";
var success = function (message) {
alert("Success: " + JSON.stringify(message));
};
var error = function (message) {
alert("Error: " + message);
};
  var calOptions = window.plugins.calendar.getCalendarOptions(); // grab the defaults
        calOptions.firstReminderMinutes = 120; // default is 60, pass in null for no reminder (alarm)
        calOptions.secondReminderMinutes = 5;
        calOptions.recurrence = "daily"; // supported are: daily, weekly, monthly, yearly
        calOptions.recurrenceEndDate = new Date(2025, 4, 15, 19, 30, 0, 0, 0); //
window.plugins.calendar.createEventWithOptions(title, eventLocation, notes, startDate, endDate, calOptions, success, error);

Then i want to delete it

var startDate = new Date(2015, 4, 15, 18, 30, 0, 0, 0); // beware: month 0 = january, 11 = december
var endDate = new Date(2015, 4, 15, 18, 35, 0, 0, 0);
var title = "My nice event";
var eventLocation = "Home";
var notes = "Some notes about this event.";
var success = function (message) {
//alert("Success: " + JSON.stringify(message));
};
var error = function (message) {
// alert("Error: " + message);
};
window.plugins.calendar.deleteEvent(title,eventLocation,notes,startDate,endDate,success,error);

If interval is for 1 day .. to 10 days it works good. If i want to delete event for 1 year or 2 years not working..app crash..calendar crash .. i must wait 30-40 seconds to open calendar end delete event.

The problem is from my code or is a problem with plugin ?