1
0
Fork 0
mirror of https://github.com/sussy-code/smov.git synced 2024-12-20 14:37:43 +01:00

Tweak shouldShowNextEpisodeButton percentage

This commit is contained in:
Cooper Ransom 2024-03-22 23:14:51 -04:00
parent 5d721adb91
commit 478b24e627

View file

@ -15,7 +15,7 @@ function shouldShowNextEpisodeButton(
const percentage = time / duration; const percentage = time / duration;
const secondsFromEnd = duration - time; const secondsFromEnd = duration - time;
if (secondsFromEnd <= 30) return "always"; if (secondsFromEnd <= 30) return "always";
if (percentage >= 0.94) return "hover"; if (percentage >= 0.93) return "hover";
return "none"; return "none";
} }