Skip Menu |

This queue is for tickets about the Net-Google-Calendar CPAN distribution.

Report information
The Basics
Id: 58070
Status: new
Priority: 0/
Queue: Net-Google-Calendar

People
Owner: Nobody in particular
Requestors: AWNCORP [...] cpan.org
Cc:
AdminCc:

Bug Information
Severity: Important
Broken in: 0.99
Fixed in: (no value)



Subject: Hit or Miss Issue when deleting multiple events.
Some events get deleted, some don't when deleting multiple entries from Google Calendar. # e.g. my $cal = Net::Google::Calendar->new; $cal->login($username, $password); my @cal_events = $cal->get_events(); foreach my $event (@cal_events) { $cal->delete_event($event) if $event->title =~ m/./; }