From 90fe46769408860c2a368eaaafb2dad10702fdcf Mon Sep 17 00:00:00 2001 From: Xjph Date: Mon, 25 Oct 2021 10:56:47 -0230 Subject: [PATCH] avoid hardcoded namespace URI --- ObservatoryCore/NativeNotification/NativeVoice.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ObservatoryCore/NativeNotification/NativeVoice.cs b/ObservatoryCore/NativeNotification/NativeVoice.cs index 04aca4c..cf601c6 100644 --- a/ObservatoryCore/NativeNotification/NativeVoice.cs +++ b/ObservatoryCore/NativeNotification/NativeVoice.cs @@ -90,7 +90,7 @@ namespace Observatory.NativeNotification { //Preserve existing content to place it in new voice element string speakContent = ssmlDoc.DocumentElement.InnerXml; - speakContent = speakContent.Replace("xmlns=\"http://www.w3.org/2001/10/synthesis\"", string.Empty); + speakContent = speakContent.Replace($"xmlns=\"{ssmlNs.LookupNamespace("ssml")}\"", string.Empty); //Crete new voice element and name attribute objects var voiceElement = ssmlDoc.CreateElement("voice", ssmlNs.LookupNamespace("ssml"));