我创建了一个这样的机器人类
export class IIROSE_Bot<C extends Context = Context, T extends IIROSE_Bot.Config = IIROSE_Bot.Config> extends Bot<C, T> {
constructor(ctx: C, config: T) {
super(ctx, config);
ctx.plugin(WsClient, this);
this.selfId = ctx.config.uid;
this.userId = ctx.config.uid;
this.getSelf().then(v => {
this.user = v;
});
}
}
在机器人类中我需要用到cache或者database来缓存平台的用户列表,于是遇到了如下的错误
似乎在koishi的4.17.1
的版本的时候木有这个错误
在昨天升级到4.17.2
的版本的时候才出现的这个错误
(球球dalao们教教…