-
Notifications
You must be signed in to change notification settings - Fork 7
Conversation
This sounds like a bad idea |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
implementation("dev.kord", "kord-core", "0.7.x-SNAPSHOT")
Need to change this too or you will get issues with ktor 1.6
The problem here isn't that the Guild cache isn't enabled. It's that you try to fetch the guild before the ready event get's fired so the guild can't be cached yet and has to be resolved through rest. The guild cache is enabled per default and this shouldn't change anything Also let's poke @BartArys to fix: kordlib/kord#55 |
Thanks for the clarification |
cache { | ||
guilds { cache, description -> | ||
MapEntryCache(cache, description, MapLikeCollection.concurrentHashMap()) | ||
} | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This still won't have any effect since guild caching is a thing that is enabled by default
This PR will be superseded buy an upcoming PR |
This will (hopefully) solve the issue that the member count is null on /info