Fixes issue with loading auto answer properties, reported by William Roush.

cusax-fix 4788
Damian Minkov 12 years ago
parent a1a3d55572
commit 4fda65bcd9

@ -32,6 +32,8 @@ public OperationSetAutoAnswerJabberImpl(
ProtocolProviderServiceJabberImpl protocolProvider)
{
super(protocolProvider);
this.load();
}
/**

@ -74,6 +74,8 @@ public OperationSetAutoAnswerSipImpl(
ProtocolProviderServiceSipImpl protocolProvider)
{
super(protocolProvider);
this.load();
}
/**
@ -329,8 +331,6 @@ protected boolean satisfyAutoAnswerConditions(Call call)
* Makes a check after creating call locally, should we answer it.
*
* @param call The new incoming call to auto-answer if needed.
* @param isVideoCall Indicates if the remote peer which has created this
* call wish to have a video call.
*
* @return <tt>true</tt> if we have processed and no further processing is
* needed, <tt>false</tt> otherwise.

@ -52,9 +52,6 @@ public AbstractOperationSetBasicAutoAnswer(
ProtocolProviderService protocolProvider)
{
this.protocolProvider = protocolProvider;
// init values from account props
load();
}
/**

Loading…
Cancel
Save