mirror of
https://github.com/BililiveRecorder/BililiveRecorder.git
synced 2024-11-16 11:42:22 +08:00
Toolbox: Fix "NeedFix" always returns true
This commit is contained in:
parent
fe527e7bc9
commit
71334605c9
|
@ -137,7 +137,7 @@ namespace BililiveRecorder.ToolBox.Tool.Analyze
|
|||
{
|
||||
var (videoStats, audioStats) = statsRule.GetStats();
|
||||
|
||||
var countableComments = comments.Where(x => x.Type != CommentType.Logging).ToArray();
|
||||
var countableComments = comments.Where(x => x.ActionRequired).ToArray();
|
||||
return new AnalyzeResponse
|
||||
{
|
||||
InputPath = inputPath,
|
||||
|
|
|
@ -191,7 +191,7 @@ namespace BililiveRecorder.ToolBox.Tool.Fix
|
|||
{
|
||||
var (videoStats, audioStats) = statsRule.GetStats();
|
||||
|
||||
var countableComments = comments.Where(x => x.Type != CommentType.Logging).ToArray();
|
||||
var countableComments = comments.Where(x => x.ActionRequired).ToArray();
|
||||
return new FixResponse
|
||||
{
|
||||
InputPath = inputPath,
|
||||
|
|
Loading…
Reference in New Issue
Block a user