From d37b289355aa932189c573e8f1d74f3b654584a7 Mon Sep 17 00:00:00 2001 From: Xjph Date: Mon, 15 Nov 2021 20:35:42 -0330 Subject: [PATCH] fix to preserve "general" speaking styles --- ObservatoryHerald/AzureSpeechManager.cs | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/ObservatoryHerald/AzureSpeechManager.cs b/ObservatoryHerald/AzureSpeechManager.cs index fe06a2e..c25c05a 100644 --- a/ObservatoryHerald/AzureSpeechManager.cs +++ b/ObservatoryHerald/AzureSpeechManager.cs @@ -73,19 +73,17 @@ namespace Observatory.Herald { string demonym = GetDemonymFromLocale(voice.Locale); - if (voice.StyleList.Length > 1) + voiceOptions.Add( + $"{demonym} - {voice.LocalName}", + voice); + + foreach (var style in voice.StyleList) { - foreach (var style in voice.StyleList) - { + if (!string.IsNullOrWhiteSpace(style)) voiceOptions.Add( $"{demonym} - {voice.LocalName} - {style}", voice); - } } - else - voiceOptions.Add( - $"{demonym} - {voice.LocalName}", - voice); } return voiceOptions;