Merge pull request #6845 from marius-luca-87/dlna

Flush the XmlWriter before calling the StringBuilder ToString() method
This commit is contained in:
Cody Robibero 2021-11-14 13:02:46 -07:00 committed by GitHub
commit 4cb649853d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -395,6 +395,7 @@ namespace Emby.Dlna.ContentDirectory
}
writer.WriteFullEndElement();
writer.Flush();
xmlWriter.WriteElementString("Result", builder.ToString());
}
@ -484,6 +485,7 @@ namespace Emby.Dlna.ContentDirectory
}
writer.WriteFullEndElement();
writer.Flush();
xmlWriter.WriteElementString("Result", builder.ToString());
}