properly handle post_publish event

This commit is contained in:
Josh
2017-06-19 09:35:54 -04:00
parent 6e343740e8
commit 78a2f33f2d
2 changed files with 22 additions and 11 deletions

View File

@ -92,7 +92,9 @@ renderActiveMeeting = function(m){
}
removeActiveMeeting = function(meeting){
$('#' + meeting['name'].replace(' ', '_')).remove()
if(meeting){
$('#' + meeting['name'].replace(' ', '_')).remove()
}
}
// Directly join a meeting from active meetings.