Browse Source

批量短信

Dun.Jason 8 tháng trước cách đây
mục cha
commit
13f5a43000
1 tập tin đã thay đổi với 4 bổ sung0 xóa
  1. 4 0
      src/Hotline.Api/Controllers/PushMessageController.cs

+ 4 - 0
src/Hotline.Api/Controllers/PushMessageController.cs

@@ -256,6 +256,10 @@ namespace Hotline.Api.Controllers
         public async Task<BatchSmsTaskRep> BatchSmsTaskEntity([FromQuery]string id)
         {
             var model = await _batchSmsTaskRepository.GetAsync(id, HttpContext.RequestAborted);
+            if(model == null)
+            {
+                throw UserFriendlyException.SameMessage("无效任务");
+            }
             return _mapper.Map<BatchSmsTaskRep>(model);
         }