Christoph Berg 21 лет назад
Родитель
Сommit
827035d419
2 измененных файлов с 4 добавлено и 0 удалено
  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;
    * CSS file can be linked to instead of being included statically;
      using "none" will make pisg omit the HTML header.
      using "none" will make pisg omit the HTML header.
    * Documented HiCell and HiCell2 options.
    * Documented HiCell and HiCell2 options.
+   * Fixed winbot parser (SF tracker #1082554 by Warmedal).
    Changes by Morten Brix Pedersen:
    Changes by Morten Brix Pedersen:
    * Fixed typo in French translation.
    * Fixed typo in French translation.
 
 

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

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