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