browserutilities/downloadmgr/DownloadMgrServEng/Src/HttpDownload.cpp
branchRCL_3
changeset 44 800203832575
parent 40 8bfb9186a8b8
child 48 79859ed3eea9
--- a/browserutilities/downloadmgr/DownloadMgrServEng/Src/HttpDownload.cpp	Wed Jun 09 10:52:50 2010 +0300
+++ b/browserutilities/downloadmgr/DownloadMgrServEng/Src/HttpDownload.cpp	Mon Jun 21 16:54:17 2010 +0300
@@ -3818,41 +3818,51 @@
 			//but we again send the progress state as EHttpProgContentFileMoved because we need to display
 			//where file is saved(saved to gallery)
 			//Change Dl State to Download Completed if not already           
-
-		    if(_OMADLOTA2_MULTI_DOWNLOAD)
-				{
-				TPtrC fileNamePtr = ((*iCodDlData)[iMOMoved])->DestFilename();
-				NotifyMediaGalleryL(fileNamePtr);
-
-				// Initiate async move for the next media object
-				iMOMoved++;
-				if(iMOMoved <= iCodDlData->Count())
-					{
-					MoveDownloadedMediaObjectL(iMOMoved);
-					break;
-					}
-				}
-
-            SetDownloadStatus( iDlNameChanged ? EHttpProgContentFileMovedAndDestFNChanged : EHttpProgContentFileMoved, 
+          
+            if( iStatus ==KErrNone )
+                {
+		          if(_OMADLOTA2_MULTI_DOWNLOAD)
+				     {
+				      TPtrC fileNamePtr = ((*iCodDlData)[iMOMoved])->DestFilename();
+				      NotifyMediaGalleryL(fileNamePtr);
+
+             	      // Initiate async move for the next media object
+				      iMOMoved++;
+				      if(iMOMoved <= iCodDlData->Count())
+					     {
+					      MoveDownloadedMediaObjectL(iMOMoved);
+					      break;
+					     }
+				      }
+
+                  SetDownloadStatus( iDlNameChanged ? EHttpProgContentFileMovedAndDestFNChanged : EHttpProgContentFileMoved, 
                                iDlState = EHttpDlMultipleMOCompleted, 
                                iStatus == KErrNone ? ENoError : EMoveFailed,
                                iStatus.Int() );
             
-            if(iStatus == KErrNone)
-            	{
-            	iMoveInProgress = EFalse;	
-            	CLOG_WRITE("setting iMoveInProgress false when move is completed");
-            	}
+                  if(iStatus == KErrNone)
+            	      {
+            	       iMoveInProgress = EFalse;	
+            	       CLOG_WRITE("setting iMoveInProgress false when move is completed");
+            	      }
             
+                  delete iFileMan; iFileMan = NULL;
             
-            delete iFileMan; iFileMan = NULL;
-            
-			if( !_OMADLOTA2_MULTI_DOWNLOAD)
-				{
-				TPtr fileNamePtr(iStorage->DestFilename()->Des());
-				NotifyMediaGalleryL(fileNamePtr);
-				}
-            }
+                  if( !_OMADLOTA2_MULTI_DOWNLOAD)
+				     {
+				      TPtr fileNamePtr(iStorage->DestFilename()->Des());
+				      NotifyMediaGalleryL(fileNamePtr);
+				     }
+                }
+            else
+                {
+                CLOG_WRITE("Move Operation Failed ");
+                CLOG_WRITE("setting progress state to EHttpProgNone when move is Failing");
+                SetDownloadStatus( EHttpProgNone, iDlState );
+                CLOG_WRITE("setting iMoveInProgress false when move is Failing");
+                iMoveInProgress = EFalse;
+                }
+            } 
             break;
 
         default: