Skip to content

Commit

Permalink
fix: Fix #480
Browse files Browse the repository at this point in the history
Fixes DISCATSHARP-282
  • Loading branch information
Lulalaby committed Aug 27, 2024
1 parent e6144c0 commit 0692d11
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion DisCatSharp/Entities/Channel/DiscordChannel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public class DiscordChannel : SnowflakeObject, IEquatable<DiscordChannel>
/// Initializes a new instance of the <see cref="DiscordChannel" /> class.
/// </summary>
internal DiscordChannel()
: base(["hashes", "guild_hashes", "owner_id", "thread_metadata", "message_count", "member_count", "total_message_sent", "member"])
: base(["hashes", "guild_hashes", "owner_id", "thread_metadata", "message_count", "member_count", "total_message_sent", "member", "voice_background_display"])
{
this._permissionOverwritesLazy = new(() => new ReadOnlyCollection<DiscordOverwrite>(this.PermissionOverwritesInternal));
}
Expand Down

0 comments on commit 0692d11

Please sign in to comment.