fix SubsystemOperationTimeService.GetDepthIntervalSubsystem()

This commit is contained in:
Frolov-Nikita 2023-10-04 11:55:11 +05:00
parent 1451065ad9
commit d2f6d468ab
No known key found for this signature in database
GPG Key ID: 719E3386D12B0760

View File

@ -207,7 +207,7 @@ namespace AsbCloudInfrastructure.Services.Subsystems
{ {
var depthIntervalSubsystem = 0d; var depthIntervalSubsystem = 0d;
//AKB - MSE //AKB - MSE
if (idSubsystem == IdSubsystemAKB | idSubsystem == IdSubsystemMSE) if (idSubsystem == IdSubsystemAKB || idSubsystem == IdSubsystemMSE)
{ {
depthIntervalSubsystem = depthInterval.depthIntervalRotor + depthInterval.depthIntervalSlide; depthIntervalSubsystem = depthInterval.depthIntervalRotor + depthInterval.depthIntervalSlide;
} }