engine/src/HttpClient.cpp
changeset 69 4a65cc85c4f3
parent 60 4d230e702aa3
child 164 000f9fc147b2
--- a/engine/src/HttpClient.cpp	Wed Apr 28 11:18:29 2010 +0100
+++ b/engine/src/HttpClient.cpp	Wed Apr 28 13:20:05 2010 +0100
@@ -192,8 +192,12 @@
 
 TBool CHttpClient::GetL(const TDesC& aUrl, const TDesC& aFileName,  TBool aSilent) {
 	DP("CHttpClient::Get START");
-	DP2("Getting '%S' to '%S'", &aUrl, &aFileName);	
-	__ASSERT_DEBUG((iIsActive==EFalse), Panic(EPodcatcherPanicAlreadyActive));
+	DP2("Getting '%S' to '%S'", &aUrl, &aFileName);
+	
+	if (iIsActive)
+		{
+		return EFalse;
+		}
 	iCurrentURL.Copy(aUrl);	
 		
 	TInt urlError = iUriParser.Parse(iCurrentURL);