Skip to content

Commit

Permalink
Load podcast list before update on startup (bug 1337)
Browse files Browse the repository at this point in the history
  • Loading branch information
thp committed May 7, 2011
1 parent 6903dff commit d56149a
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/gpodder/gui.py
Expand Up @@ -485,7 +485,12 @@ def show_hint(button):
self.btnUpdateFeeds.show()
self.updating_feed_cache = False
self.feed_cache_update_cancelled = False
self.update_feed_cache(force_update=self.config.update_on_startup)

# Always load the podcast list, even when updating later (bug 1337)
self.update_feed_cache(force_update=False)

if self.config.update_on_startup:
self.update_feed_cache(force_update=True)

self.message_area = None

Expand Down

0 comments on commit d56149a

Please sign in to comment.