Fix YA IPC
This commit is contained in:
parent
ec51c89bba
commit
04f7a0a4c7
@ -278,7 +278,7 @@ internal sealed class QuestController
|
||||
if (_taskQueue.Count > 0)
|
||||
_taskQueue.Clear();
|
||||
|
||||
_yesAlreadyIpc.DisableYesAlready();
|
||||
_yesAlreadyIpc.RestoreYesAlready();
|
||||
}
|
||||
|
||||
public void Stop(string label, bool continueIfAutomatic = false)
|
||||
|
10
Questionable/External/YesAlreadyIpc.cs
vendored
10
Questionable/External/YesAlreadyIpc.cs
vendored
@ -17,18 +17,24 @@ internal sealed class YesAlreadyIpc : IDisposable
|
||||
}
|
||||
|
||||
public void DisableYesAlready()
|
||||
{
|
||||
if (_pluginInterface.TryGetData<HashSet<string>>("YesAlready.StopRequests", out var data) &&
|
||||
!data.Contains(nameof(Questionable)))
|
||||
{
|
||||
_pluginLog.Debug("Disabling YesAlready");
|
||||
if (_pluginInterface.TryGetData<HashSet<string>>("YesAlready.StopRequests", out var data))
|
||||
data.Add(nameof(Questionable));
|
||||
}
|
||||
}
|
||||
|
||||
public void RestoreYesAlready()
|
||||
{
|
||||
if (_pluginInterface.TryGetData<HashSet<string>>("YesAlready.StopRequests", out var data) &&
|
||||
data.Contains(nameof(Questionable)))
|
||||
{
|
||||
_pluginLog.Debug("Restoring YesAlready");
|
||||
if (_pluginInterface.TryGetData<HashSet<string>>("YesAlready.StopRequests", out var data))
|
||||
data.Remove(nameof(Questionable));
|
||||
}
|
||||
}
|
||||
|
||||
public void Dispose() => RestoreYesAlready();
|
||||
}
|
||||
|
@ -1,7 +1,7 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
<PropertyGroup>
|
||||
<TargetFramework>net8.0-windows</TargetFramework>
|
||||
<Version>0.16</Version>
|
||||
<Version>0.17</Version>
|
||||
<LangVersion>12</LangVersion>
|
||||
<Nullable>enable</Nullable>
|
||||
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
|
||||
|
Loading…
Reference in New Issue
Block a user