Browse Source

Merge branch 'cd319' into dev

田爽 7 months ago
parent
commit
c08cf0b894
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/Hotline.Application/Subscribers/InternalCapSubscriber.cs

+ 1 - 1
src/Hotline.Application/Subscribers/InternalCapSubscriber.cs

@@ -248,7 +248,7 @@ namespace Hotline.Application.Subscribers
 						if (delays.Any())
 						if (delays.Any())
 						{
 						{
 							delay = delays.First();
 							delay = delays.First();
-							await _orderDelayRepository.Updateable().SetColumns(x => new OrderDelay() { AutomaticDelayNum = x.AutomaticDelayNum + 1 })
+							await _orderDelayRepository.Updateable().SetColumns(x => new OrderDelay() { AutomaticDelayNum = x.AutomaticDelayNum + 1, ApplyDelayTime = DateTime.Now })
 								.Where(x => x.Id == delay.Id).ExecuteCommandAsync(cancellationToken);
 								.Where(x => x.Id == delay.Id).ExecuteCommandAsync(cancellationToken);
 						}
 						}
 						else
 						else