diff options
| -rw-r--r-- | indra/newview/llfloaterimcontainer.cpp | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/indra/newview/llfloaterimcontainer.cpp b/indra/newview/llfloaterimcontainer.cpp index 1bb2ce01e4..b88888da3b 100644 --- a/indra/newview/llfloaterimcontainer.cpp +++ b/indra/newview/llfloaterimcontainer.cpp @@ -2086,7 +2086,7 @@ void LLFloaterIMContainer::closeFloater(bool app_quitting/* = false*/)  	// Check for currently active session  	LLUUID session_id = getSelectedSession();  	// If current session is Nearby Chat or there is only one session remaining, close the floater -	if (mConversationsItems.size() == 1 || session_id == LLUUID()) +	if (mConversationsItems.size() == 1 || session_id == LLUUID() || app_quitting)  	{  		onClickCloseBtn();  	} | 
