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

move `return` from injectio.js to loader

上级 57f452a0
......@@ -70,7 +70,7 @@ class Bridge {
log.verbose('PuppetWebBridge', 'inject()')
return co.call(this, function* () {
const injectio = this.getInjectio()
const injectio = 'return ' + this.getInjectio()
let retObj = yield this.execute(injectio, this.port)
if (retObj && /^(2|3)/.test(retObj.code)) { // HTTP Code 2XX & 3XX
......@@ -129,18 +129,18 @@ class Bridge {
getUserName() {
return this.proxyWechaty('getUserName')
.catch(e => {
log.error('PuppetWebBridge', 'getUserName() exception: %s', e.message)
throw e
})
.catch(e => {
log.error('PuppetWebBridge', 'getUserName() exception: %s', e.message)
throw e
})
}
send(toUserName, content) {
return this.proxyWechaty('send', toUserName, content)
.catch(e => {
log.error('PuppetWebBridge', 'send() exception: %s', e.message)
throw e
})
.catch(e => {
log.error('PuppetWebBridge', 'send() exception: %s', e.message)
throw e
})
}
getMsgImg(id) {
......
......@@ -28,7 +28,7 @@
/*global angular*/
return (function(port) {
(function(port) {
port = port || 8788
/*
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册