Skip to content

Commit

Permalink
fix transcription response
Browse files Browse the repository at this point in the history
  • Loading branch information
crc-32 committed Nov 4, 2024
1 parent 70f9d88 commit 2c561e1
Showing 1 changed file with 6 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -122,9 +122,12 @@ class VoiceSessionHandler(
buildList {
add(makeTranscription(it.sentences))
if (appInitiated && voiceSession.appUuid != null) {
add(VoiceAttribute.AppUuid().apply {
uuid.set(voiceSession.appUuid)
})
add(VoiceAttribute(
id = VoiceAttributeType.AppUuid.value,
content = VoiceAttribute.AppUuid().apply {
uuid.set(voiceSession.appUuid)
}
))
}
}
)
Expand Down

0 comments on commit 2c561e1

Please sign in to comment.