Skip to content

Commit

Permalink
nil にならず、フィルタリング可能のため除外する条件を削除する
Browse files Browse the repository at this point in the history
  • Loading branch information
Hexa committed Jan 10, 2025
1 parent 33fa656 commit f52e8a7
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions amazon_transcribe_v2_handler.go
Original file line number Diff line number Diff line change
Expand Up @@ -219,12 +219,6 @@ func contentFilterByTranscribedTimeV2(config Config, item types.Item) bool {
return true
}

// TODO: v2 で必須になったため、対応方法を検討する
// // StartTime または EndTime が nil の場合はフィルタリングしない
// if (item.StartTime == nil) || (item.EndTime == nil) {
// return true
// }

// 発話時間が minimumTranscribedTime 未満の場合はフィルタリングする
return (item.EndTime - item.StartTime) >= minimumTranscribedTime
}
Expand Down

0 comments on commit f52e8a7

Please sign in to comment.