fix: 优化解析

This commit is contained in:
ningmengchongshui 2024-06-09 23:19:06 +08:00
parent 068b0e60b7
commit 0602eb0041
2 changed files with 18 additions and 18 deletions

View File

@ -68,7 +68,6 @@ class ListenerLoader {
this.init(await import('./events/offline.js'), './events/offline.js') this.init(await import('./events/offline.js'), './events/offline.js')
this.init(await import('./events/online.js'), './events/online.js') this.init(await import('./events/online.js'), './events/online.js')
this.init(await import('./events/request.js'), './events/request.js') this.init(await import('./events/request.js'), './events/request.js')
} }
} }

View File

@ -68,7 +68,8 @@ export class plugin {
priority && (this.priority = priority) priority && (this.priority = priority)
/** 定时任务,可以是数组 */ /** 定时任务,可以是数组 */
task && (this.task = { task &&
(this.task = {
/** 任务名 */ /** 任务名 */
name: task?.name ?? '', name: task?.name ?? '',
/** 任务方法名 */ /** 任务方法名 */