engine/src/HttpClient.cpp
changeset 126 c2f1ea38ec70
parent 115 d87e984bd8b8
child 228 c553fa9dcbe5
child 285 4d42a5e09930
--- a/engine/src/HttpClient.cpp	Thu Apr 29 11:55:32 2010 +0100
+++ b/engine/src/HttpClient.cpp	Thu May 13 13:56: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);