application/src/PodcastFeedView.cpp
changeset 5 ba42cd6670b8
parent 2 29cda98b007e
child 7 a7a43293ae56
--- a/application/src/PodcastFeedView.cpp	Thu Feb 25 16:02:42 2010 +0000
+++ b/application/src/PodcastFeedView.cpp	Thu Feb 25 16:27:23 2010 +0000
@@ -376,6 +376,11 @@
 		}
 	}
 	
+	if(aFeedInfo.LastError() != KErrNone)
+		{
+		GetFeedErrorText(unplayedShows, aFeedInfo.LastError());
+		}
+		
 	if (unplayedShows.Length() > 0) {
 		unplayedShows.Insert(0,_L(", "));
 	}
@@ -916,3 +921,8 @@
 	{
 	iPodcastModel.FeedEngine().CancelUpdateAllFeeds();
 	}
+
+void CPodcastFeedView::GetFeedErrorText(TDes &aErrorMessage, TInt aErrorCode)
+	{
+	iEikonEnv->GetErrorText(aErrorMessage, aErrorCode);
+	}