feat: allow GUILD_ANNOUNCEMENT for Discord
Allow the Discord provider to post in "GUILD_ANNOUNCEMENT" text channels, also known as announcement channels
This commit is contained in:
parent
3efdaf6243
commit
d4d467276f
|
|
@ -117,7 +117,7 @@ export class DiscordProvider extends SocialAbstract implements SocialProvider {
|
|||
).json();
|
||||
|
||||
return list
|
||||
.filter((p: any) => p.type === 0 || p.type === 15)
|
||||
.filter((p: any) => p.type === 0 || p.type === 5 || p.type === 15)
|
||||
.map((p: any) => ({
|
||||
id: String(p.id),
|
||||
name: p.name,
|
||||
|
|
|
|||
Loading…
Reference in New Issue