fix(ThreadChannel): Omit webhook fetching (v13) (#8352)

This commit is contained in:
Jiralite 2022-07-24 16:26:34 +01:00 committed by GitHub
parent 622c77ba7a
commit 4f7c1e35c3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -549,6 +549,6 @@ class ThreadChannel extends Channel {
// Doesn't work on Thread channels; setNSFW() {}
}
TextBasedChannel.applyToClass(ThreadChannel, true, ['setRateLimitPerUser', 'setNSFW']);
TextBasedChannel.applyToClass(ThreadChannel, true, ['fetchWebhooks', 'setRateLimitPerUser', 'setNSFW']);
module.exports = ThreadChannel;