admin 2 년 전
부모
커밋
d6ac1d85ad
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      src/CallCenter.Application/Handlers/ExtState/IdleNotificationHandler.cs

+ 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);