I am creating a Siri Intent Extension, and I want to allow support for users to send group chat messages through Siri (WhatsApp has this feature). However, whenever I ask Siri to send a message to a group chat through my extension, the speakableGroupName attribute comes up null and the recipient gets handled as a person, not group name.
I have tried saying "Send a message using MyApp to a group titled Testing" etc, but no matter what phrases I include in the Siri call, the intent handler treats it as a recipient with name "Testing" instead of populating the speakableGroupName.
Ex. Printing intent.speakableGroupName
gives me nil, but printing intent.recipients
gives me a single recipient with recipient.displayName = 'Testing'
.