normalize recordSyntaxes and domains
[irspy-moved-to-github.git] / lib / ZOOM / IRSpy / Stats.pm
index 641f47f..6a59c6b 100644 (file)
@@ -113,7 +113,7 @@ sub _gather_stats {
 
        # Record syntax support by database
        foreach my $node ($xc->findnodes('e:recordInfo/e:recordSyntax/@name')) {
-           $this->{recordSyntaxes}->{$node->findvalue(".")}++;
+           $this->{recordSyntaxes}->{lc($node->findvalue("."))}++;
        }
 
        # Explain support
@@ -135,7 +135,7 @@ sub _gather_stats {
        # Top Domains
        my $host = $xc->findvalue('e:serverInfo/e:host');
        $host =~ s/.*\.//;
-       $this->{domains}->{$host}++;
+       $this->{domains}->{lc($host)}++;
 
        # Implementation
        foreach my $node ($xc->findnodes('i:status/i:serverImplementationName/@value')) {