This commit is contained in:
2026-01-23 02:12:21 +08:00
parent a1460a97b4
commit ee261f5c27
2 changed files with 2 additions and 2 deletions

View File

@@ -1,6 +1,6 @@
{ {
"name": "@kevisual/api", "name": "@kevisual/api",
"version": "0.0.25", "version": "0.0.26",
"description": "", "description": "",
"main": "mod.ts", "main": "mod.ts",
"scripts": { "scripts": {

View File

@@ -6,7 +6,7 @@ export class QueryLoginBrowser extends QueryLogin {
constructor(opts: QueryLoginNodeOptsWithoutCache) { constructor(opts: QueryLoginNodeOptsWithoutCache) {
super({ super({
...opts, ...opts,
cache: new MyCache('login'), cache: new MyCache({ key: 'login' }),
}); });
} }
} }