fixed nlp data not being exported with xml

This commit is contained in:
Jonas Werner 2025-03-23 17:00:13 +01:00
parent 53bade28e9
commit 547479c3e4

View file

@ -124,6 +124,9 @@ public class XMLUtil {
Speaker_MongoDB_Impl speaker = getSpeakerById(String.valueOf(speech.getSpeakerId()));
HtmlSpeech htmlSpeech = getHtmlSpeechByKey(String.valueOf(speech.getSpeechId()));
addNlpData(doc, htmlSpeech);
speechElement.appendChild(speaker.toXML(doc));
speechElement.appendChild(speech.toXML(doc));
}