Skip to content
Snippets Groups Projects
Commit bbbeb728 authored by Alexandre Savard's avatar Alexandre Savard
Browse files

#6298: Fix conference recording file update at conference end

parent de81f1de
No related branches found
No related tags found
No related merge requests found
......@@ -33,6 +33,8 @@
Recordable::Recordable() : recorder (&recAudio, Manager::instance().getMainBuffer())
{
_debug("-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- Recordable Constructor -=-=-=-=-=-=-=-=-=--=-=-=-");
FILE_TYPE fileType = FILE_WAV;
SOUND_FORMAT soundFormat = INT16;
......@@ -42,6 +44,8 @@ Recordable::Recordable() : recorder (&recAudio, Manager::instance().getMainBuffe
Recordable::~Recordable()
{
_debug("-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= Recordable Destructor -=-=-=-=-=-=-=-=-=-=-=-=-=-");
if (recAudio.isOpenFile()) {
recAudio.closeFile();
}
......
......@@ -916,6 +916,8 @@ void ManagerImpl::removeConference (const ConfID& conference_id)
else {
_error ("Manager: Error: Cannot remove conference: %s", conference_id.c_str());
}
delete conf;
}
Conference*
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment