diff options
-rwxr-xr-x | stats.pl | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -78,7 +78,7 @@ for my $group (@group_names) { my $content = get("http://".$group_info->{'server'}->{$group}); - if (length $content > 1) { + if (defined($content) && length $content > 1) { for my $line (split /\n/, $content) { last if (defined($users) && defined($posts) && defined($comments)); last if ($line =~ /Last activity/i); |