You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: restcomm/restcomm.interpreter/src/main/java/org/mobicents/servlet/restcomm/interpreter/VoiceInterpreter.java
Copy file name to clipboardExpand all lines: restcomm/restcomm.mscontrol.mms/src/main/java/org/mobicents/servlet/restcomm/mscontrol/mgcp/MmsBridgeController.java
+11-3Lines changed: 11 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -297,6 +297,13 @@ private void onMediaGroupStateChanged(MediaGroupStateChanged message, ActorRef s
297
297
if (fail) {
298
298
this.fsm.transition(message, failed);
299
299
} else {
300
+
// Save record info in the database
301
+
if (recordStarted != null) {
302
+
saveRecording();
303
+
recordStarted = null;
304
+
recordingRequest = null;
305
+
}
306
+
// Move to inactive state
300
307
this.fsm.transition(message, inactive);
301
308
}
302
309
}
@@ -407,13 +414,14 @@ public DestroyingMediaGroup(final ActorRef source) {
0 commit comments