openvidu-server: activeRecordings to recordingIds

pull/576/head
pabloFuente 2020-12-09 17:38:56 +01:00
parent c4ca3863ce
commit 5000bdfcde
1 changed files with 1 additions and 1 deletions

View File

@ -194,7 +194,7 @@ public class Kms {
for (String recordingId : this.activeRecordings.keySet()) { for (String recordingId : this.activeRecordings.keySet()) {
activeRecordingsJson.add(recordingId); activeRecordingsJson.add(recordingId);
} }
json.add("activeRecordings", activeRecordingsJson); json.add("recordingIds", activeRecordingsJson);
} }
if (withExtraInfo) { if (withExtraInfo) {