Merge pull request #4348 from ritzalam/skip-bad-matadat-xml

- do not include recordings with bad metadata.xml in the response fo…
This commit is contained in:
Richard Alam 2017-08-31 11:19:04 -04:00 committed by GitHub
commit 2dd6a5e005
2 changed files with 1 additions and 6 deletions

View File

@ -49,11 +49,6 @@ public class RecordingMetadataReaderHelper {
log.error("IOException on " + metadataXml.getAbsolutePath(), e);
}
if (recMeta == null) {
recMeta = new RecordingMetadata();
recMeta.setMetadataXml(metadataXml.getParentFile().getName());
recMeta.setProcessingError(true);
}
return recMeta;
}

View File

@ -1561,7 +1561,7 @@ class ApiController {
returncode(RESP_CODE_SUCCESS)
recordings(null)
messageKey("noRecordings")
message("There are not recordings for the meetings")
message("There are no recordings for the meeting(s).")
}
}
}