summaryrefslogtreecommitdiff
path: root/tt-rss.js
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2007-02-07 18:01:35 +0100
committerAndrew Dolgov <[email protected]>2007-02-07 18:01:35 +0100
commit86173d9a958ab2b2482d683fae3d7c8c627a3ba4 (patch)
tree476306f38f9f9a312d1edd41f656c3c2dbbc2540 /tt-rss.js
parente3a21a251cd3c0516bf716fa76c735fd51497724 (diff)
force timestamp hack to most main operations
Diffstat (limited to 'tt-rss.js')
-rw-r--r--tt-rss.js8
1 files changed, 3 insertions, 5 deletions
diff --git a/tt-rss.js b/tt-rss.js
index be3aca8e6..b50cc3b71 100644
--- a/tt-rss.js
+++ b/tt-rss.js
@@ -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";