Skip to content

Commit

Permalink
This close issue #293
Browse files Browse the repository at this point in the history
  • Loading branch information
gvagenas committed Jun 13, 2015
1 parent 6fee14e commit fa76e11
Showing 1 changed file with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -752,9 +752,6 @@ public void onReceive(final Object message) throws Exception {
}
} else if (initializingConferenceMediaGroup.equals(state)) {
fsm.transition(message, joiningConference);
} else if (bridged.equals(state)) {
if (dialRecordAttribute != null && dialRecordAttribute.value().equalsIgnoreCase("true"))
recordCall();
}
} else if (MediaGroupStateChanged.State.INACTIVE == event.state()) {
if (!hangingUp.equals(state)) {
Expand Down Expand Up @@ -1584,6 +1581,8 @@ public void execute(final Object message) throws Exception {
final UntypedActorContext context = getContext();
context.setReceiveTimeout(Duration.create(timeLimit, TimeUnit.SECONDS));
callMediaGroup.tell(new Stop(), source);
if (dialRecordAttribute != null && dialRecordAttribute.value().equalsIgnoreCase("true"))
recordCall();
}
}

Expand Down

0 comments on commit fa76e11

Please sign in to comment.