1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-20 19:31:28 +00:00

force timestamp hack to most main operations

This commit is contained in:
Andrew Dolgov
2007-02-07 18:01:35 +01:00
parent e3a21a251c
commit 86173d9a95
3 changed files with 11 additions and 5 deletions

View File

@@ -202,11 +202,9 @@ function updateFeedList(silent, fetch) {
query_str = query_str + "&actid=" + getActiveFeedId();
}
if (navigator.userAgent.match("Opera")) {
var date = new Date();
var timestamp = Math.round(date.getTime() / 1000);
query_str = query_str + "&ts=" + timestamp
}
var date = new Date();
var timestamp = Math.round(date.getTime() / 1000);
query_str = query_str + "&ts=" + timestamp
if (fetch) query_str = query_str + "&fetch=yes";