Merge pull request #5830 from browniecab/v2.2-dev

Fixed two issues preventing recordings from being processed and published
This commit is contained in:
Calvin Walton 2018-07-10 12:01:08 -04:00 committed by GitHub
commit 0c383e14ce
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -37,7 +37,7 @@ module BigBlueButton
#removing "_N" at the end of userId
userId.gsub(/_\d*$/, "")
participant_ids.add(userId)
participants_ids.add(userId)
end
return participants_ids.length
end

View File

@ -1335,7 +1335,7 @@ begin
processPresentation(package_dir)
processDeskshareEvents()
processDeskshareEvents(@doc)
# Write slides.xml to file
File.open("#{package_dir}/slides_new.xml", 'w') { |f| f.puts $slides_doc.to_xml }