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