From c5d598488530f75dd938e2dd0163d7c82624144e Mon Sep 17 00:00:00 2001 From: Latif Khalifa Date: Sun, 27 Apr 2014 21:37:52 +0200 Subject: [PATCH] Checking for ChatSessionRequest cap is not neccessary for establishing private voice calls. Addresses issue 1293 --- indra/newview/llimpanel.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/indra/newview/llimpanel.cpp b/indra/newview/llimpanel.cpp index 855b82d58..275c530f4 100644 --- a/indra/newview/llimpanel.cpp +++ b/indra/newview/llimpanel.cpp @@ -556,7 +556,7 @@ void LLFloaterIMPanel::draw() { LLViewerRegion* region = gAgent.getRegion(); - bool enable_connect = (region && !region->getCapability("ChatSessionRequest").empty()) + bool enable_connect = region && mSessionInitialized && LLVoiceClient::getInstance()->voiceEnabled() && mCallBackEnabled;