Commit 99b88228 authored by deleolajide's avatar deleolajide

work-in-progress

parent aceb7499
...@@ -44,7 +44,7 @@ public class JigasiPlugin ...@@ -44,7 +44,7 @@ public class JigasiPlugin
this.pluginDirectory = pluginDirectory; this.pluginDirectory = pluginDirectory;
ComponentManager componentManager = ComponentManagerFactory.getComponentManager(); ComponentManager componentManager = ComponentManagerFactory.getComponentManager();
String subdomain = "call-control"; String subdomain = "ofmeet-call-control";
CallControlComponent component = new CallControlComponent(pluginDirectory); CallControlComponent component = new CallControlComponent(pluginDirectory);
boolean added = false; boolean added = false;
......
...@@ -59,7 +59,7 @@ public class Config extends HttpServlet ...@@ -59,7 +59,7 @@ public class Config extends HttpServlet
{ {
String type = photo.element("TYPE").getText(); String type = photo.element("TYPE").getText();
String binval = photo.element("BINVAL").getText(); String binval = photo.element("BINVAL").getText();
userAvatar = "data:" + type + ";base64," + binval; userAvatar = "data:" + type + ";base64," + binval.replace("\n", "").replace("\r", "");;
} }
} }
} }
...@@ -98,8 +98,8 @@ public class Config extends HttpServlet ...@@ -98,8 +98,8 @@ public class Config extends HttpServlet
out.println(" hosts: {"); out.println(" hosts: {");
out.println(" domain: '" + domain + "',"); out.println(" domain: '" + domain + "',");
out.println(" muc: 'conference." + domain + "',"); out.println(" muc: 'conference." + domain + "',");
out.println(" bridge: 'jitsi-videobridge." + domain + "',"); out.println(" bridge: 'ofmeet-jitsi-videobridge." + domain + "',");
out.println(" call_control: 'call-control." + domain + "',"); out.println(" call_control: 'ofmeet-call-control." + domain + "',");
out.println(" },"); out.println(" },");
out.println(" getroomnode: function (path)"); out.println(" getroomnode: function (path)");
out.println(" {"); out.println(" {");
......
...@@ -186,7 +186,7 @@ public class PluginImpl ...@@ -186,7 +186,7 @@ public class PluginImpl
ComponentManager componentManager ComponentManager componentManager
= ComponentManagerFactory.getComponentManager(); = ComponentManagerFactory.getComponentManager();
String subdomain = ComponentImpl.SUBDOMAIN; String subdomain = "ofmeet-jitsi-videobridge"; //ComponentImpl.SUBDOMAIN;
PluginImpl.component = new ComponentImpl(); PluginImpl.component = new ComponentImpl();
boolean added = false; boolean added = false;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment