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