From 7adf516b20d87d04ab55f6c4de82f17a815246a2 Mon Sep 17 00:00:00 2001
From: Quin Lynch <49576606+quinchs@users.noreply.github.com>
Date: Thu, 2 Jun 2022 10:18:27 -0300
Subject: [PATCH] fix: Disable TIV restrictions for rollout of TIV (#2342)
---
src/Discord.Net.WebSocket/Entities/Channels/SocketVoiceChannel.cs | 8 ++++++--
1 file changed, 6 insertions(+), 2 deletions(-)
diff --git a/src/Discord.Net.WebSocket/Entities/Channels/SocketVoiceChannel.cs b/src/Discord.Net.WebSocket/Entities/Channels/SocketVoiceChannel.cs
index 5fc99c3f1..7bf65d638 100644
--- a/src/Discord.Net.WebSocket/Entities/Channels/SocketVoiceChannel.cs
+++ b/src/Discord.Net.WebSocket/Entities/Channels/SocketVoiceChannel.cs
@@ -21,8 +21,12 @@ namespace Discord.WebSocket
///
/// Gets whether or not the guild has Text-In-Voice enabled and the voice channel is a TiV channel.
///
- public virtual bool IsTextInVoice
- => Guild.Features.HasTextInVoice;
+ ///
+ /// Discord currently doesn't have a way to disable Text-In-Voice yet so this field is always
+ /// on s and on
+ /// s.
+ ///
+ public virtual bool IsTextInVoice => true;
///
public int Bitrate { get; private set; }