Symbian.org/FeedUpdateBroker.js
changeset 3 9cbe91927e89
parent 0 54498df70f5d
child 4 cb6368112727
--- a/Symbian.org/FeedUpdateBroker.js	Mon Jun 08 13:27:04 2009 +0100
+++ b/Symbian.org/FeedUpdateBroker.js	Tue Jun 09 13:59:04 2009 +0100
@@ -24,16 +24,8 @@
     var self = this;
     this.httpReq.onreadystatechange = function() { self.readyStateChanged(); };
 
-	var fullURL = this.feedAddress;
-    if (fullURL.indexOf("?") == -1) {
-        fullURL += "?";
-    } else {
-        fullURL += "&";
-    }
-    fullURL += "nocache=" + (new Date().getTime());
-
     // initiate the request
-    this.httpReq.open("GET", fullURL, true);
+    this.httpReq.open("GET", nocache(this.feedAddress), true);
     this.httpReq.send(null);
 }