mirror of
https://github.com/9ParsonsB/Pulsar.git
synced 2025-04-05 17:39:39 -04:00
avoid hardcoded namespace URI
This commit is contained in:
parent
49636e8522
commit
90fe467694
@ -90,7 +90,7 @@ namespace Observatory.NativeNotification
|
|||||||
{
|
{
|
||||||
//Preserve existing content to place it in new voice element
|
//Preserve existing content to place it in new voice element
|
||||||
string speakContent = ssmlDoc.DocumentElement.InnerXml;
|
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
|
//Crete new voice element and name attribute objects
|
||||||
var voiceElement = ssmlDoc.CreateElement("voice", ssmlNs.LookupNamespace("ssml"));
|
var voiceElement = ssmlDoc.CreateElement("voice", ssmlNs.LookupNamespace("ssml"));
|
||||||
|
Loading…
x
Reference in New Issue
Block a user