Skip to content

Commit

Permalink
fix:修正间隔扫描时间单位
Browse files Browse the repository at this point in the history
-将配置参数"间隔扫描时间"的时间单位从秒改为分钟
  • Loading branch information
Ponderfly committed Oct 29, 2024
1 parent fa6bec5 commit c9a3df8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@
else if(isIntervalMode)
{
Console.WriteLine("扫描等待中...");
await Task.Delay(TimeSpan.FromSeconds(config.间隔扫描时间));
await Task.Delay(TimeSpan.FromMinutes(config.间隔扫描时间));
goto Start;
}
return;
Expand Down

0 comments on commit c9a3df8

Please sign in to comment.