diff --git a/frontend/static/js/public.js b/frontend/static/js/public.js index 9261fddd..3c1b6245 100644 --- a/frontend/static/js/public.js +++ b/frontend/static/js/public.js @@ -17,7 +17,7 @@ angular.module("FICApp") }) .filter("since", function() { return function(passed) { - if (passed < 60000) { + if (passed < 120000) { return "Il y a " + Math.floor(passed/1000) + " secondes"; } else { return "Il y a " + Math.floor(passed/60000) + " minutes";