Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit aa9f61c

Browse files
committedMay 30, 2020
Update Job_Blogs_Quartz.cs
1 parent 4ed4181 commit aa9f61c

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed
 

Diff for: ‎Blog.Core.Tasks/QuartzNet/Jobs/Job_Blogs_Quartz.cs

+1-2
Original file line numberDiff line numberDiff line change
@@ -55,8 +55,7 @@ public async Task Run(IJobExecutionContext context, int jobid)
5555
var separator = "<br>";
5656
model.Remark =
5757
$"【{DateTime.Now}】执行任务【Id:{context.JobDetail.Key.Name},组别:{context.JobDetail.Key.Group}】【执行成功】{separator}"
58-
+ string.Join(separator, StringHelper.GetTopDataBySeparator(model.Remark, separator, 9, true))
59-
+ separator;
58+
+ string.Join(separator, StringHelper.GetTopDataBySeparator(model.Remark, separator, 9));
6059

6160
await _tasksQzServices.Update(model);
6261
}

0 commit comments

Comments
 (0)
Please sign in to comment.