Implemented the feature using multiple checkboxes

This commit is contained in:
Jared Fantaye 2023-02-04 18:48:27 +01:00
parent 9c82441c19
commit cd8d57040c
8 changed files with 107 additions and 158 deletions

View file

@ -73,6 +73,8 @@ abstract class FeedDAO {
OR sst.stream_id IS NULL
OR (sst.progress_time <= ${StreamStateEntity.PLAYBACK_SAVE_THRESHOLD_START_MILLISECONDS}
AND sst.progress_time <= s.duration * 1000 / 4)
OR (sst.progress_time >= s.duration * 1000 - ${StreamStateEntity.PLAYBACK_FINISHED_END_MILLISECONDS}
OR sst.progress_time >= s.duration * 1000 * 3 / 4)
)
AND (
:uploadDateBefore IS NULL