internal static void UpdateAllFeeds()
        {
            ArrayList feeds = null;

            if (Library.FeedCount > 0)
            {
                lock (Library.PodcastFeedSync)
                {
                    feeds = new ArrayList(Library.Feeds);
                }
            }

            if (feeds != null)
            {
                FeedFetcher.Update(feeds, false);
            }
        }