SubsystemOperationTimeCalcWorkFactory.OperationTimeSpinAsync(...) fix condition.

This commit is contained in:
ngfrolov 2023-07-03 08:51:39 +05:00
parent de845c5ac5
commit 7252c68f72
Signed by untrusted user who does not match committer: ng.frolov
GPG Key ID: E99907A0357B29A7

View File

@ -205,7 +205,7 @@ namespace AsbCloudInfrastructure.Services.Subsystems
if (state == 7 && (mode & 2) > 0)
return idSubsytemTorqueMaster;// демпфер
if (state != 0 & state != 5 & state != 6 & state != 7)
if (state != 0 && state != 5 && state != 6 && state != 7)
return idSubsytemSpinMaster;// осцилляция
return null;