diff options
author | Brad Linden <46733234+brad-linden@users.noreply.github.com> | 2024-06-21 12:02:08 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-06-21 12:02:08 -0700 |
commit | c13eba105f9dcdc4b946e8b5443abf9baf15b691 (patch) | |
tree | 7658fbce931d80f6580a49a6ee3163a5437aa429 /indra/newview/llimview.cpp | |
parent | a9971d35015fc97fb6bd2fb4e94152c9f2e0779e (diff) | |
parent | e2c7a4d2454eada7d330eef1a57c1788eea775db (diff) |
Merge pull request #1827 from Ansariel/develop-mergefix
Fix some BOOL oversights during WebRTC merge
Diffstat (limited to 'indra/newview/llimview.cpp')
-rw-r--r-- | indra/newview/llimview.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llimview.cpp b/indra/newview/llimview.cpp index 9df8807bf5..72edbaebe1 100644 --- a/indra/newview/llimview.cpp +++ b/indra/newview/llimview.cpp @@ -4267,7 +4267,7 @@ public: return; } - BOOL session_type_p2p = input["body"]["voice"].get("invitation_type").asInteger() == EMultiAgentChatSessionType::P2P_CHAT_SESSION; + bool session_type_p2p = input["body"]["voice"].get("invitation_type").asInteger() == EMultiAgentChatSessionType::P2P_CHAT_SESSION; LL_DEBUGS("Voice") << "Received voice information from the server: " << input["body"]<< LL_ENDL; gIMMgr->inviteToSession( input["body"]["session_id"].asUUID(), |