Disables configuration of call recording if call recording button is hidden.

cusax-fix 4832
Damian Minkov 13 years ago
parent 901c3f43d2
commit 0867960cab

@ -533,7 +533,10 @@ public void start(BundleContext bundleContext)
// Call Recording
// If the call recording configuration form is disabled don't continue.
if ((cfg == null)
|| !cfg.getBoolean(CALL_RECORDING_CONFIG_DISABLED_PROP, false))
|| !(cfg.getBoolean(CALL_RECORDING_CONFIG_DISABLED_PROP, false)
|| cfg.getBoolean("net.java.sip.communicator" +
".impl.gui.main.call.HIDE_CALL_RECORD_BUTTON",
false)))
{
Dictionary<String, String> callRecordingProps
= new Hashtable<String, String>();

Loading…
Cancel
Save