this repo has no description
3
fork

Configure Feed

Select the types of activity you want to include in your feed.

chore: adjust offsets

+4 -4
+4 -4
public/app.js
··· 58 58 function getDurationClass(ms) { 59 59 const hours = ms / (1000 * 60 * 60); 60 60 61 - if (hours >= 24) { 62 - return "duration-long"; // Long-lasting story (24+ hours) 61 + if (hours >= 18) { 62 + return "duration-long"; // Long-lasting story (18+ hours) 63 63 } 64 - if (hours >= 12) { 65 - return "duration-medium"; // Medium-lasting story (12-24 hours) 64 + if (hours >= 10) { 65 + return "duration-medium"; // Medium-lasting story (10-18 hours) 66 66 } 67 67 if (hours >= 3) { 68 68 return "duration-normal"; // Normal duration (3-12 hours)