Преглед изворни кода

Chop lines added to sayings to the length of maxquote (so we don't have super long quotes showing up)

sbingner пре 23 година
родитељ
комит
fe04771bb4
1 измењених фајлова са 1 додато и 1 уклоњено
  1. 1 1
      modules/Pisg/Parser/Logfile.pm

+ 1 - 1
modules/Pisg/Parser/Logfile.pm

@@ -251,7 +251,7 @@ sub _parse_file
                     } elsif (!$lines->{sayings}{$nick}) {
                         # Just fill the users first saying in if he hasn't
                         # said anything yet, to get rid of empty quotes.
-                        push @{ $lines->{sayings}{$nick} }, $saying;
+                        push @{ $lines->{sayings}{$nick} }, substr($saying, 0, $self->{cfg}->{maxquote});
                     }
 
                     $stats->{lengths}{$nick} += $len;