--- 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);
+ }