openvidu-server: recording size in bytes from int to long (NumberFormatException)

pull/473/head
pabloFuente 2020-05-04 22:15:11 +02:00
parent 3b13177643
commit add3ee5603
1 changed files with 2 additions and 2 deletions

View File

@ -71,8 +71,8 @@ public class RecordingInfoUtils {
return jsonFormat.get("duration").getAsDouble();
}
public int getSizeInBytes() {
return jsonFormat.get("size").getAsInt();
public long getSizeInBytes() {
return jsonFormat.get("size").getAsLong();
}
public int getNumberOfStreams() {