From 7302d99c8d5de0d41a907a4ab403755b26494a4c Mon Sep 17 00:00:00 2001 From: Filip Leonarski Date: Sat, 15 Apr 2023 15:34:08 +0200 Subject: [PATCH] MlxRawEthDevice: Set to idle in case of exception --- receiver/host/MlxRawEthDevice.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/receiver/host/MlxRawEthDevice.cpp b/receiver/host/MlxRawEthDevice.cpp index 101f9cdb..56768577 100644 --- a/receiver/host/MlxRawEthDevice.cpp +++ b/receiver/host/MlxRawEthDevice.cpp @@ -85,6 +85,7 @@ void MlxRawEthDevice::MeasureThread() { } catch (const JFJochException &e) { cancel = true; + idle = true; throw e; } idle = true;