admin há 2 anos atrás
pai
commit
d6ac1d85ad

+ 1 - 1
src/CallCenter.Application/Handlers/ExtState/IdleNotificationHandler.cs

@@ -37,7 +37,7 @@ namespace CallCenter.Application.Handlers
         public async Task Handle(IdleNotification notification, CancellationToken cancellationToken)
         {
             var telModel = _telCacheManager.GetTel(notification.TelNo);
-            telModel.TelStatus = ETelStatus.Ready;
+            telModel.TelStatus = Tels.ETelStatus.Ready;
             //await _telRepository.UpdateAsync(telModel, cancellationToken);
             _typedCache.Set(notification.TelNo, telModel);