1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-13 13:15:55 +00:00

force timestamp hack to most main operations (feedlist)

This commit is contained in:
Andrew Dolgov
2007-02-07 18:04:43 +01:00
parent 86173d9a95
commit a51193e239

View File

@@ -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());