Subject: | CriterionService::checkCriteria |
Date: | Thu, 27 Mar 2008 14:18:14 +0300 |
To: | <bug-Google-Adwords [...] rt.cpan.org> |
From: | Торопов Евгений <jt [...] aaanet.ru> |
The same for CriterionService::checkCriteria
Show quoted text
----- Original Message -----
From: Торопов Евгений
To: bug-Google-Adwords@rt.cpan.org
Sent: Thursday, March 27, 2008 1:39 PM
Subject: AdService::checkAds
Greetings,
sub checkAds
{
my ( $self, $args_ref ) = @_;
my @params;
# The Ads
foreach my $ad ( @{ $args_ref->{ads} } )
{
if ( not defined $ad->id )
{
die "id must be set for the Ad object\n"; <== this should be removed as for now you can't check ad before creating it (ad doesn't have ID yet). Google successfully checks ad without ad ID
}
}
Cheers,
Eugne