mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2025-12-28 16:01:27 +00:00
workaround for Opera cache of feeds/headlines panel; remove addheader param handling
This commit is contained in:
10
feedlist.js
10
feedlist.js
@@ -101,8 +101,14 @@ function viewfeed(feed, skip, subop, doc) {
|
||||
var headlines_frame = parent.frames["headlines-frame"];
|
||||
|
||||
// alert(headlines_frame)
|
||||
|
||||
headlines_frame.location.href = query + "&addheader=true";
|
||||
|
||||
if (navigator.userAgent.match("Opera")) {
|
||||
var date = new Date();
|
||||
var timestamp = Math.round(date.getTime() / 1000);
|
||||
query = query + "&ts=" + timestamp
|
||||
}
|
||||
|
||||
headlines_frame.location.href = query;
|
||||
|
||||
cleanSelectedList("feedList");
|
||||
|
||||
|
||||
Reference in New Issue
Block a user