diff --git a/app/assets/javascripts/discourse/lib/formatter.js b/app/assets/javascripts/discourse/lib/formatter.js index e9c5f6cf92f..a1d6216fac3 100644 --- a/app/assets/javascripts/discourse/lib/formatter.js +++ b/app/assets/javascripts/discourse/lib/formatter.js @@ -96,7 +96,7 @@ updateRelativeAge = function(elems) { autoUpdatingRelativeAge = function(date,options) { if (!date) return ""; - if (+date === +new Date("1970/1/1 1:0:0")) return ""; + if (+date === +new Date(0)) return ""; options = options || {}; var format = options.format || "tiny";