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

strip functions on contact object

上级 0fe45f12
......@@ -481,11 +481,23 @@ return (function(port) {
return null
}
var c = contactFactory.getContact(id)
if (c && c.isContact) {
c.stranger = !(c.isContact())
var contactWithoutFunction = {}
if (c) {
if (c.isContact) {
c.stranger = !(c.isContact())
}
Object.keys(c).forEach(function(k) {
if (typeof c[k] !== 'function') {
contactWithoutFunction[k] = c[k]
}
})
}
return c
return contactWithoutFunction
}
function getUserName() {
var accountFactory = Wechaty.glue.accountFactory
return accountFactory
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册