1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-21 15:01:29 +00:00

workaround for Opera cache of feeds/headlines panel; remove addheader param handling

This commit is contained in:
Andrew Dolgov
2006-02-26 15:07:22 +01:00
parent 362698addb
commit 59b8192f94
5 changed files with 69 additions and 68 deletions

View File

@@ -225,6 +225,12 @@ 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
}
if (fetch) query_str = query_str + "&fetch=yes";
var feeds_frame = document.getElementById("feeds-frame");