From 214f30e8cf044604d0cc4fc4376a28c49573c9f0 Mon Sep 17 00:00:00 2001 From: Richard Fuchs Date: Wed, 22 Jul 2020 11:03:22 -0400 Subject: [PATCH] Unkernelise streams when recording is stopped This is needed to reset the kernel stream indexes. fixes #1048 Change-Id: If46c4f85a752c2ed64997e6c4a44625845f4cc87 --- daemon/recording.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/daemon/recording.c b/daemon/recording.c index d14ca1d67..348a59cd8 100644 --- a/daemon/recording.c +++ b/daemon/recording.c @@ -620,6 +620,8 @@ void recording_finish(struct call *call) { if (!call || !call->recording) return; + __call_unkernelize(call); + struct recording *recording = call->recording; _rm(finish, call);