fix(core): cancel control command cancellation token every time
2 files changed, 18 insertions(+), 1 deletions(-) M Core/NosSmooth.Core/Commands/Control/ControlCommands.cs M Core/NosSmooth.Core/Commands/Control/TakeControlCommandHandler.cs
M Core/NosSmooth.Core/Commands/Control/ControlCommands.cs => Core/NosSmooth.Core/Commands/Control/ControlCommands.cs +4 -1
@@ 198,7 198,10 @@ public class ControlCommands try { data.CancellationTokenSource.Cancel(); if (!data.CancellationTokenSource.IsCancellationRequested) { data.CancellationTokenSource.Cancel(); } } catch {
M Core/NosSmooth.Core/Commands/Control/TakeControlCommandHandler.cs => Core/NosSmooth.Core/Commands/Control/TakeControlCommandHandler.cs +14 -0