Skip Menu |

This queue is for tickets about the VUser-Google-Apps CPAN distribution.

Report information
The Basics
Id: 35852
Status: resolved
Priority: 0/
Queue: VUser-Google-Apps

People
Owner: Nobody in particular
Requestors: bscott [...] uafortsmith.edu
Cc:
AdminCc:

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



Subject: RetrievePageOfUsers returning an empty array
I believe the following lines in RetrievePageOfUsers: if ($self->Request('GET', $url)) { foreach my $entry (@{ $self->{result}{'atom:feed'}{'atom:entry'} }) { push @entries, $self->buildEntry($entry); } Should be changed to look like it does in RetrieveAllUsers if ($self->Request('GET', $url)) { foreach my $entry (@{ $self->{result}{'entry'} }) { push @entries, $self->buildUserEntry($entry); }
From: lpenou+bitcard [...] imelavi.fr
You're right. It probably should be. Fix committed to CVS.