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