pull/399/head
648540858 2022-03-14 18:34:25 +08:00
parent 354a39961a
commit bde0e13682
1 changed files with 1 additions and 1 deletions

View File

@ -88,7 +88,7 @@ public class RecordInfoQueryMessageHandler extends SIPRequestProcessorParent imp
Element secrecyElement = rootElement.element("Secrecy"); Element secrecyElement = rootElement.element("Secrecy");
int secrecy = 0; int secrecy = 0;
if (secrecyElement != null) { if (secrecyElement != null) {
secrecy = Integer.parseInt(secrecyElement.getText()); secrecy = Integer.parseInt(secrecyElement.getText().trim());
} }
String type = "all"; String type = "all";
Element typeElement = rootElement.element("Type"); Element typeElement = rootElement.element("Type");