diff options
-rw-r--r-- | OpenSim/Region/OptionalModules/Avatar/Voice/FreeSwitchVoice/FreeSwitchVoiceModule.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/OpenSim/Region/OptionalModules/Avatar/Voice/FreeSwitchVoice/FreeSwitchVoiceModule.cs b/OpenSim/Region/OptionalModules/Avatar/Voice/FreeSwitchVoice/FreeSwitchVoiceModule.cs index 9a17233..a583cca 100644 --- a/OpenSim/Region/OptionalModules/Avatar/Voice/FreeSwitchVoice/FreeSwitchVoiceModule.cs +++ b/OpenSim/Region/OptionalModules/Avatar/Voice/FreeSwitchVoice/FreeSwitchVoiceModule.cs | |||
@@ -603,7 +603,7 @@ namespace OpenSim.Region.OptionalModules.Avatar.Voice.FreeSwitchVoice | |||
603 | response["str_response_string"] = string.Empty; | 603 | response["str_response_string"] = string.Empty; |
604 | response["content-type"] = "text/xml"; | 604 | response["content-type"] = "text/xml"; |
605 | 605 | ||
606 | Hashtable requestBody = parseRequestBody((string)request["body"]); | 606 | Hashtable requestBody = ParseRequestBody((string)request["body"]); |
607 | 607 | ||
608 | if (!requestBody.ContainsKey("auth_token")) | 608 | if (!requestBody.ContainsKey("auth_token")) |
609 | return response; | 609 | return response; |
@@ -675,7 +675,7 @@ namespace OpenSim.Region.OptionalModules.Avatar.Voice.FreeSwitchVoice | |||
675 | string uri = (string)request["uri"]; | 675 | string uri = (string)request["uri"]; |
676 | string contenttype = (string)request["content-type"]; | 676 | string contenttype = (string)request["content-type"]; |
677 | 677 | ||
678 | Hashtable requestBody = parseRequestBody((string)request["body"]); | 678 | Hashtable requestBody = ParseRequestBody((string)request["body"]); |
679 | 679 | ||
680 | //string pwd = (string) requestBody["pwd"]; | 680 | //string pwd = (string) requestBody["pwd"]; |
681 | string userid = (string) requestBody["userid"]; | 681 | string userid = (string) requestBody["userid"]; |
@@ -719,7 +719,7 @@ namespace OpenSim.Region.OptionalModules.Avatar.Voice.FreeSwitchVoice | |||
719 | return response; | 719 | return response; |
720 | } | 720 | } |
721 | 721 | ||
722 | public Hashtable parseRequestBody(string body) | 722 | public Hashtable ParseRequestBody(string body) |
723 | { | 723 | { |
724 | Hashtable bodyParams = new Hashtable(); | 724 | Hashtable bodyParams = new Hashtable(); |
725 | // split string | 725 | // split string |