Skip to content

Commit 327fcb9

Browse files
committed
fix(GuildConfigCache): base LRUCache item
1 parent a347045 commit 327fcb9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Core/Stores/GuildConfigCache.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ class GuildConfigsCache extends Store {
2727
* @memberof GuildConfigsCache
2828
*/
2929
constructor(axonClient, limit) {
30-
super(new LRUCache(limit || 1000, { base: axonClient._guildConfig } ) );
30+
super(new LRUCache(limit || 1000, { base: axonClient.extensions.guildConfig } ) );
3131
this._axon = axonClient;
3232
}
3333

0 commit comments

Comments
 (0)