fix problem with update feed cache on startup

git-svn-id: svn://svn.berlios.de/gpodder/trunk@332 b0d088ad-0a06-0410-aad2-9ed5178a7e87
This commit is contained in:
Thomas Perl 2007-05-25 10:06:43 +00:00
parent d22efc7522
commit e5c6525f9b
2 changed files with 9 additions and 1 deletions

View File

@ -1,3 +1,9 @@
Fri, 25 May 2007 12:04:20 +0200 <thp@perli.net>
* src/gpodder/gpodder.py: Update the feed cache after everything
else has been changed, so that we now really have a working
update-on-startup option; thanks to Götz Waschk and Stephan Buys
for reporting and helping to fix this long-standing problem :)
Thu, 24 May 2007 16:45:43 +0200 <thp@perli.net>
* src/gpodder/libipodsync.py: Mark strings as translatable
that appear in the GUI (bugfix ;)

View File

@ -184,7 +184,6 @@ class Gpodder(SimpleGladeApp):
# Subscribed channels
self.active_channel = None
self.channels = gPodderChannelReader().read( force_update = False)
self.update_feed_cache( force_update = gl.update_on_startup)
# create a localDB object
self.ldb = localDB()
@ -195,6 +194,9 @@ class Gpodder(SimpleGladeApp):
# Clean up old, orphaned download files
gl.clean_up_downloads( delete_partial = True)
# Now, update the feed cache, when everything's in place
self.update_feed_cache( force_update = gl.update_on_startup)
#-- Gpodder.new }
#-- Gpodder custom methods {