wxBot icon indicating copy to clipboard operation
wxBot copied to clipboard

无法识别电脑版微信的@

Open lidustin opened this issue 8 years ago • 4 comments

在手机上@就有回应,但是在电脑版微信上@就完全不能识别了。

lidustin avatar Mar 22 '16 11:03 lidustin

我也发现这个问题了,有解决方法吗

mushroomlb avatar Feb 27 '17 08:02 mushroomlb

发现解决方法: 在def proc_at_info(msg):中添加两行代码

def proc_at_info(msg):
     if not msg:
        return '', []
     segs = msg.split(u'\u2005')
     if len(segs) == 1: # 添加
        segs = msg.split(' ')  #添加

是因为电脑版中@成员后面跟着英文空格,而手机版@成员后面跟着中文空格。。

ruxi-xsw avatar Mar 13 '17 14:03 ruxi-xsw

@liuwons 这个问题似乎影响很大呀……我最近都duplicate好几个issue到这了

xmcp avatar Apr 13 '17 03:04 xmcp

这个问题很严重啊,为什么作者不修复? @liuwons

Huarong avatar Aug 03 '17 08:08 Huarong