|

楼主 |
发表于 2003-4-12 01:35:16
|
显示全部楼层
Re: 0.5版本的一个BUG?
Thanks for the bug report..
最初由 altmayer 发布
刚才碰到了一个BUG,有些ID发来的消息显示不了,就改了一下
82行
..........
my $MsgPrecursor = chr(0x00)x8 . chr(0x01);
+ my $MsgPrecursor2 = chr(0x00)x4 . chr(0x01);
.........
803行
.....
- if ($plain =~ /$MsgPrecursor(.*)$/s) {
+ if ($plain =~ /$MsgPrecursor2(.*)$/s) {
..... |
|