Symbian.org/FeedUpdateBroker.js
changeset 16 6544cc5386ce
parent 15 5e64ec5b1dfe
child 18 b73e6caf0031
equal deleted inserted replaced
15:5e64ec5b1dfe 16:6544cc5386ce
    49         
    49         
    50 		// are we being prompted for login?
    50 		// are we being prompted for login?
    51 		var text = this.httpReq.responseText;
    51 		var text = this.httpReq.responseText;
    52 		if ( isLoginPrompt (text) ) {
    52 		if ( isLoginPrompt (text) ) {
    53 			var self = this;
    53 			var self = this;
    54 			login(function(){self.doFetchFeed();});
    54 			setTimeout(self.doFetchFeed(), 100);
       
    55 //			login(function(){self.doFetchFeed();});
    55 			return;
    56 			return;
    56 		}
    57 		}
    57 		
    58 		
    58         // handle the response and call the registered callback object
    59         // handle the response and call the registered callback object
    59 		var response = this.httpReq.responseXML;
    60 		var response = this.httpReq.responseXML;