From: Andrew Dolgov Date: Wed, 7 Feb 2007 17:04:43 +0000 (+0100) Subject: force timestamp hack to most main operations (feedlist) X-Git-Tag: 1.2.8~10 X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;h=a51193e2392061616c0425334281ac2fb61bf1bb;p=tt-rss.git force timestamp hack to most main operations (feedlist) --- diff --git a/feedlist.js b/feedlist.js index 3a475ece..1bbb178b 100644 --- a/feedlist.js +++ b/feedlist.js @@ -114,11 +114,9 @@ function viewfeed(feed, subop, is_cat, subop_param, skip_history, offset) { query = query + "&skip=" + page_offset; } - if (navigator.userAgent.match("Opera")) { - var date = new Date(); - var timestamp = Math.round(date.getTime() / 1000); - query = query + "&ts=" + timestamp - } + var date = new Date(); + var timestamp = Math.round(date.getTime() / 1000); + query = query + "&ts=" + timestamp if (!activeFeedIsCat()) { var feedr = document.getElementById("FEEDR-" + getActiveFeedId());