Skip to content
Snippets Groups Projects
Commit a84993f4 authored by Chris Liu's avatar Chris Liu
Browse files

Changed all UTF-16 back to UTF-8

git-svn-id: http://bigbluebutton.googlecode.com/svn/trunk@3969 af16638f-c34d-0410-8cfa-b39d5352b314
parent f0d49c64
No related branches found
No related tags found
No related merge requests found
......@@ -327,7 +327,7 @@ public String getJoinURLViewer(String username, String meetingToken) {
//
public static String urlEncode(String s) {
try {
return URLEncoder.encode(s, "UTF-16");
return URLEncoder.encode(s, "UTF-8");
} catch (Exception e) {
e.printStackTrace();
}
......
......@@ -177,7 +177,7 @@ $(document).ready(function(){
String enterURL = BigBlueButtonURL
+ "demo/create.jsp?action=join&username="
+ URLEncoder.encode(username, "UTF-16") + "&meetingToken="
+ URLEncoder.encode(meetingToken, "UTF-16");
+ URLEncoder.encode(meetingToken, "UTF-8");
if (isMeetingRunning(meetingToken, meetingID).equals("true")) {
//
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment