Merge branch 'master' of github.com:bigbluebutton/bigbluebutton

This commit is contained in:
Fred Dixon 2011-07-10 08:38:19 -07:00
commit 74dcf87466
2 changed files with 2 additions and 1 deletions

View File

@ -153,7 +153,7 @@ public class RoomManager {
rm.add(p);
if ((rm.numParticipants() == 1) && (rm.record())) {
if ((rm.numParticipants() == 1) && rm.record() && !rm.isRecording()) {
/**
* Start recording when the first user joins the voice conference.
* WARNING: Works only with FreeSWITCH for now. We need to come up with a generic way to

View File

@ -105,5 +105,6 @@ if (playback == "simple")
index_html = File.new("#{publish_dir}/index.html","w")
index_html.write(html)
index_html.close
File.chmod(0644, "#{publish_dir}/index.html")
end
end