q-koa 13.1.9 → 13.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/core/config.js +0 -1
- package/core/file/services/weixinMP.js +5 -0
- package/package.json +1 -1
package/core/config.js
CHANGED
|
@@ -393,6 +393,11 @@ module.exports = class Singleton {
|
|
|
393
393
|
cache.reset()
|
|
394
394
|
return await this.queryUrlLink(url_link)
|
|
395
395
|
}
|
|
396
|
+
if (result.errcode === 85403) {
|
|
397
|
+
return {
|
|
398
|
+
expire_time: 0,
|
|
399
|
+
}
|
|
400
|
+
}
|
|
396
401
|
throw new Error(`${result.errcode};${result.errmsg}`)
|
|
397
402
|
}
|
|
398
403
|
return result.url_link_info
|