Update IpcProviders.cs

This commit is contained in:
Bracket 2025-08-31 23:06:23 +01:00 committed by GitHub
parent c420b1f180
commit da1db70635
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -53,6 +53,7 @@ public sealed class IpcProviders : IDisposable, IApiService
IpcSubscribers.RevertState.Provider(pi, api.State),
IpcSubscribers.RevertStateName.Provider(pi, api.State),
IpcSubscribers.UnlockState.Provider(pi, api.State),
IpcSubscribers.IsUnlocked.Provider(pi, api.State),
IpcSubscribers.UnlockStateName.Provider(pi, api.State),
IpcSubscribers.UnlockAll.Provider(pi, api.State),
IpcSubscribers.RevertToAutomation.Provider(pi, api.State),
@ -75,3 +76,4 @@ public sealed class IpcProviders : IDisposable, IApiService
_disposedProvider.Dispose();
}
}