summaryrefslogtreecommitdiff
path: root/viewfeed.js
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2007-05-30 15:54:47 +0100
committerAndrew Dolgov <[email protected]>2007-05-30 15:54:47 +0100
commitc5af7171a5426414e8b7188ac3d411fc3b6bafc0 (patch)
treeae02a9f965b1c42d2129f34b80e9dc7fa3cb3ed9 /viewfeed.js
parent0239683783b6e4ddf793e08b56beaf4877d751e7 (diff)
possible workaround for xmlhttp stucking on safari
Diffstat (limited to 'viewfeed.js')
-rw-r--r--viewfeed.js3
1 files changed, 3 insertions, 0 deletions
diff --git a/viewfeed.js b/viewfeed.js
index 18264eb63..bef608d3f 100644
--- a/viewfeed.js
+++ b/viewfeed.js
@@ -199,6 +199,9 @@ function view(id, feed_id, skip_history) {
if (!xmlhttp_ready(xmlhttp) && last_article_view < date.getTime() / 1000 - 15) {
debug("<b>xmlhttp seems to be stuck at view, aborting</b>");
xmlhttp.abort();
+ if (is_safari()) {
+ xmlhttp_ctr = Ajax.getTransport();
+ }
}
if (xmlhttp_ready(xmlhttp)) {