Browse Source

Fixed winbot parser

Christoph Berg 21 years ago
parent
commit
827035d419
2 changed files with 4 additions and 0 deletions
  1. 1 0
      docs/Changelog
  2. 3 0
      modules/Pisg/Parser/Format/winbot.pm

+ 1 - 0
docs/Changelog

@@ -11,6 +11,7 @@ pisg (0.62) - ??
    * CSS file can be linked to instead of being included statically;
      using "none" will make pisg omit the HTML header.
    * Documented HiCell and HiCell2 options.
+   * Fixed winbot parser (SF tracker #1082554 by Warmedal).
    Changes by Morten Brix Pedersen:
    * Fixed typo in French translation.
 

+ 3 - 0
modules/Pisg/Parser/Format/winbot.pm

@@ -90,6 +90,9 @@ sub thirdline
             $hash{nick} = $1;
             $hash{newnick} = $2;
 
+        } elsif ($3 =~ /^(\S+) /) {
+            $hash{nick} = $1;
+
         }
 
         return \%hash;