summaryrefslogtreecommitdiff
path: root/feedlist.js
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2007-02-07 18:04:43 +0100
committerAndrew Dolgov <[email protected]>2007-02-07 18:04:43 +0100
commita51193e2392061616c0425334281ac2fb61bf1bb (patch)
tree74c1f3f71d5962caf633ed8372b9386cb3163ccb /feedlist.js
parent86173d9a958ab2b2482d683fae3d7c8c627a3ba4 (diff)
force timestamp hack to most main operations (feedlist)
Diffstat (limited to 'feedlist.js')
-rw-r--r--feedlist.js8
1 files changed, 3 insertions, 5 deletions
diff --git a/feedlist.js b/feedlist.js
index 3a475ece4..1bbb178bd 100644
--- a/feedlist.js
+++ b/feedlist.js
@@ -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());