summaryrefslogtreecommitdiff
path: root/tt-rss.js
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2006-02-26 15:07:22 +0100
committerAndrew Dolgov <[email protected]>2006-02-26 15:07:22 +0100
commit59b8192f946cc44f6e88f2bb904d96dab2187c27 (patch)
tree3b2c9819dcb80e6dda70244d44dbe5a2619915a5 /tt-rss.js
parent362698addb96983626a74d712e7547958771c93f (diff)
workaround for Opera cache of feeds/headlines panel; remove addheader param handling
Diffstat (limited to 'tt-rss.js')
-rw-r--r--tt-rss.js6
1 files changed, 6 insertions, 0 deletions
diff --git a/tt-rss.js b/tt-rss.js
index 3e5ad3a15..63a707ab3 100644
--- a/tt-rss.js
+++ b/tt-rss.js
@@ -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");