From a58120f3227e1f00bccbb45a2486cdea8280bb2c Mon Sep 17 00:00:00 2001 From: Richard Alam Date: Tue, 5 Nov 2013 18:28:12 +0000 Subject: [PATCH] - fix https://code.google.com/p/bigbluebutton/issues/detail?id=1680 --- .../src/java/org/bigbluebutton/api/domain/Meeting.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bigbluebutton-web/src/java/org/bigbluebutton/api/domain/Meeting.java b/bigbluebutton-web/src/java/org/bigbluebutton/api/domain/Meeting.java index 04bc41fa64..3c65890234 100755 --- a/bigbluebutton-web/src/java/org/bigbluebutton/api/domain/Meeting.java +++ b/bigbluebutton-web/src/java/org/bigbluebutton/api/domain/Meeting.java @@ -29,12 +29,12 @@ import java.util.concurrent.ConcurrentMap; import org.apache.commons.lang.RandomStringUtils; public class Meeting { - private static final int MILLIS_IN_A_MINUTE = 60000; + private static final long MILLIS_IN_A_MINUTE = 60000; private String name; private String extMeetingId; private String intMeetingId; - private int duration = 0; + private long duration = 0; private long createdTime = 0; private long startTime = 0; private long endTime = 0;