mirror of
https://github.com/opensim/opensim.git
synced 2026-08-04 16:22:50 +08:00
viewer sessions are not reusable (at least not in a trivial way)
This commit is contained in:
@@ -211,7 +211,7 @@ namespace osWebRtcVoice
|
||||
}
|
||||
|
||||
// Deserialize the request. Convert the LLSDXml to OSD for our use
|
||||
OSDMap map = BodyToMap(request, "ProvisionVoiceAccountRequest");
|
||||
OSDMap map = BodyToMap(request, $"{logHeader}[ProvisionVoice]");
|
||||
if (map is null)
|
||||
{
|
||||
m_log.Error($"{logHeader}[ProvisionVoice]: No request data found. Agent={agentID}");
|
||||
@@ -349,7 +349,7 @@ namespace osWebRtcVoice
|
||||
}
|
||||
|
||||
// Deserialize the request. Convert the LLSDXml to OSD for our use
|
||||
OSDMap map = BodyToMap(request, "VoiceSignalingRequest");
|
||||
OSDMap map = BodyToMap(request, $"{logHeader}[VoiceSignaling]");
|
||||
if (map is null)
|
||||
{
|
||||
m_log.Error($"{logHeader}[VoiceSignalingRequest]: No request data found. Agent={agentID}");
|
||||
@@ -404,7 +404,7 @@ namespace osWebRtcVoice
|
||||
return;
|
||||
}
|
||||
|
||||
OSDMap reqmap = BodyToMap(request, "[ChatSessionRequest]");
|
||||
OSDMap reqmap = BodyToMap(request, $"{logHeader}[ChatSessionRequest]");
|
||||
if (reqmap is null)
|
||||
{
|
||||
m_log.Warn($"{logHeader} ChatSessionRequest: message body not parsable in request for agent {agentID}");
|
||||
|
||||
Reference in New Issue
Block a user