Commit 145f974e authored by Thiago Camargo's avatar Thiago Camargo Committed by thiago

Media Proxy Enable/Disable bug fixed

git-svn-id: http://svn.igniterealtime.org/svn/repos/wildfire/trunk@6796 b35dd754-fafc-0310-a699-88a17e54d16e
parent 0f5eb990
...@@ -45,7 +45,7 @@ public class MediaProxyService extends BasicModule ...@@ -45,7 +45,7 @@ public class MediaProxyService extends BasicModule
private PacketRouter router; private PacketRouter router;
private MediaProxy mediaProxy = null; private MediaProxy mediaProxy = null;
private boolean enabled = false; private boolean enabled = true;
public static final String NAMESPACE = "http://www.jivesoftware.com/protocol/rtpbridge"; public static final String NAMESPACE = "http://www.jivesoftware.com/protocol/rtpbridge";
...@@ -232,7 +232,7 @@ public class MediaProxyService extends BasicModule ...@@ -232,7 +232,7 @@ public class MediaProxyService extends BasicModule
catch (NumberFormatException e) { catch (NumberFormatException e) {
// Do nothing let the default values to be used. // Do nothing let the default values to be used.
} }
this.enabled = JiveGlobals.getBooleanProperty("mediaproxy.enabled"); setEnabled(JiveGlobals.getBooleanProperty("mediaproxy.enabled"));
} }
/** /**
......
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