We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0ad330b commit 4932759Copy full SHA for 4932759
src/cache/localcache.ts
@@ -73,7 +73,7 @@ export class LocalCache implements ICache {
73
}
74
75
hash[field] = json;
76
- LocalCache.localCache.set(key, hash);
+ LocalCache.localCache.set(this.buildKey(key), hash);
77
78
} catch (error) {
79
this.logger.error(error);
@@ -86,7 +86,7 @@ export class LocalCache implements ICache {
86
87
if (data && field in data) {
88
delete data[field];
89
- LocalCache.localCache.set(key, data);
+ LocalCache.localCache.set(this.buildKey(key), data);
90
return 1;
91
92
0 commit comments