mm_os 3.2.3 → 3.2.4

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.
@@ -284,7 +284,7 @@ Drive.prototype.pushSync = function(clientid, msg, func, longtime = 0) {
284
284
  }
285
285
  setTimeout(async () => {
286
286
  // 如果时间到了,回调函数还在队列中,则视为无回复
287
- if (this.drives[clientid][key]) {
287
+ if (this.drives[clientid] && this.drives[clientid][key]) {
288
288
  try {
289
289
  await this.drives[clientid][key].func(null);
290
290
  } catch (error) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mm_os",
3
- "version": "3.2.3",
3
+ "version": "3.2.4",
4
4
  "description": "这是超级美眉服务端框架,用于快速构建应用程序。",
5
5
  "main": "index.js",
6
6
  "scripts": {