提交 8cf0b396 编写于 作者: Huan (李卓桓)'s avatar Huan (李卓桓)

show deprecated message for `friend` event

上级 e7db8cbb
......@@ -387,6 +387,18 @@ export class Wechaty extends Accessory implements Sayable {
: typeof listener,
)
// DEPRECATED for 'friend' event
if (event as any === 'friend') {
log.warn('Wechaty', 'on(friend) is DEPRECATED. use on(friendship) instead')
if (typeof listener === 'function') {
const oldListener = listener
listener = (...args: any[]) => {
log.warn('Wechaty', 'on(friend) is DEPRECATED. use on(friendship) instead')
oldListener.apply(this, args)
}
}
}
if (typeof listener === 'function') {
this.addListenerFunction(event, listener)
} else {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册