Skip to content

Commit

Permalink
a confounding fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ajar98 committed Jun 27, 2024
1 parent 3bdb88b commit c9c2027
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vocode/streaming/livekit/livekit_events_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ def __init__(
subscriptions: List[EventType] = [],
):
if EventType.TRANSCRIPT not in subscriptions:
subscriptions.extend(EventType.TRANSCRIPT)
subscriptions.append(EventType.TRANSCRIPT)
super().__init__(subscriptions)

def attach_conversation(self, conversation: "LiveKitConversation"):
Expand Down

0 comments on commit c9c2027

Please sign in to comment.