diff --git a/android/shared/src/commonMain/kotlin/io/rebble/cobble/shared/handlers/VoiceSessionHandler.kt b/android/shared/src/commonMain/kotlin/io/rebble/cobble/shared/handlers/VoiceSessionHandler.kt index 2bf1a7a2..cb8b8cde 100644 --- a/android/shared/src/commonMain/kotlin/io/rebble/cobble/shared/handlers/VoiceSessionHandler.kt +++ b/android/shared/src/commonMain/kotlin/io/rebble/cobble/shared/handlers/VoiceSessionHandler.kt @@ -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) + } + )) } } )