From bc9ff70975b1eb7b0a1067fc84d7f70bf62cfc2f Mon Sep 17 00:00:00 2001 From: Darth Affe Date: Tue, 3 Mar 2020 16:00:36 +0100 Subject: [PATCH] Fixed use after dispose for novation devices --- RGB.NET.Devices.Novation/Generic/NovationRGBDevice.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/RGB.NET.Devices.Novation/Generic/NovationRGBDevice.cs b/RGB.NET.Devices.Novation/Generic/NovationRGBDevice.cs index 8152ebe..a66fb03 100644 --- a/RGB.NET.Devices.Novation/Generic/NovationRGBDevice.cs +++ b/RGB.NET.Devices.Novation/Generic/NovationRGBDevice.cs @@ -78,11 +78,11 @@ namespace RGB.NET.Devices.Novation /// public override void Dispose() { - try { UpdateQueue?.Dispose(); } - catch { /* at least we tried */ } - Reset(); + try { UpdateQueue?.Dispose(); } + catch { /* at least we tried */ } + base.Dispose(); }