Simply prevent copying connectionState. It is a control elsewhere so we should not copy default state!

This commit is contained in:
kohlerpop1
2025-09-19 08:28:56 -04:00
parent 8910c6a491
commit b7977469a0

View File

@@ -70,6 +70,6 @@ public class TikTokRoomInfo implements LiveRoomInfo
this.hostName = roomInfo.getHostName(); this.hostName = roomInfo.getHostName();
this.title = roomInfo.getTitle(); this.title = roomInfo.getTitle();
this.language = roomInfo.getLanguage(); this.language = roomInfo.getLanguage();
this.connectionState = roomInfo.getConnectionState(); // this.connectionState = roomInfo.getConnectionState(); // This should not be copied - Controlled elsewhere!
} }
} }