Skip to content

Commit

Permalink
Merge branch 'master' of github.com:resiprocate/resiprocate
Browse files Browse the repository at this point in the history
  • Loading branch information
dpocock committed Sep 24, 2021
2 parents 2e18968 + 99fb7b5 commit 29bb3e5
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions resip/recon/ConversationManager.cxx
Expand Up @@ -286,13 +286,19 @@ ConversationManager::unregisterParticipant(Participant *participant)
void
ConversationManager::post(resip::Message *msg)
{
mUserAgent->getDialogUsageManager().post(msg);
if (mUserAgent)
{
mUserAgent->getDialogUsageManager().post(msg);
}
}

void
ConversationManager::post(resip::ApplicationMessage& message, unsigned int ms)
{
mUserAgent->post(message, ms);
if (mUserAgent)
{
mUserAgent->post(message, ms);
}
}

void
Expand Down

0 comments on commit 29bb3e5

Please sign in to comment.