Lower finished threshold from 90% to 75%
Applies to frontend player, backend safety net, and stats display. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -85,7 +85,7 @@ def get_stats(
|
||||
avg_completion = db.execute(
|
||||
text("""
|
||||
SELECT AVG(uv.completion_percent) AS avg_pct,
|
||||
COUNT(CASE WHEN uv.completion_percent >= 90 THEN 1 END) AS finished_count,
|
||||
COUNT(CASE WHEN uv.completion_percent >= 75 THEN 1 END) AS finished_count,
|
||||
COUNT(CASE WHEN uv.completion_percent < 20 AND uv.completion_percent IS NOT NULL THEN 1 END) AS bailed_count,
|
||||
SUM(uv.rewatch_count) AS total_rewatches,
|
||||
COUNT(CASE WHEN uv.rewatch_count > 0 THEN 1 END) AS rewatched_videos
|
||||
|
||||
Reference in New Issue
Block a user