fixed problem with demo10
This commit is contained in:
parent
d56130a239
commit
67914cf1f4
3
bbb-api-demo/.gitignore
vendored
Normal file
3
bbb-api-demo/.gitignore
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
build
|
||||
lib
|
||||
src/main/webapp/bbb_api_conf.jsp
|
@ -440,6 +440,8 @@ public String getRecordings(String meetingID) {
|
||||
for (int i = 0; i < recordingList.getLength(); i++) {
|
||||
Element recording = (Element) recordingList.item(i);
|
||||
|
||||
if(recording.getElementsByTagName("recordID").getLength()>0){
|
||||
|
||||
String recordID = recording.getElementsByTagName("recordID").item(0).getTextContent();
|
||||
String name = recording.getElementsByTagName("name").item(0).getTextContent();
|
||||
String description = "";
|
||||
@ -484,7 +486,7 @@ public String getRecordings(String meetingID) {
|
||||
newXMLdoc += "<length>" + length + "</length>";
|
||||
|
||||
newXMLdoc += "</recording>";
|
||||
|
||||
}
|
||||
}
|
||||
}catch (Exception e) {
|
||||
e.printStackTrace(System.out);
|
||||
|
Loading…
Reference in New Issue
Block a user