small bugfix for channel editor
git-svn-id: svn://svn.berlios.de/gpodder/trunk@179 b0d088ad-0a06-0410-aad2-9ed5178a7e87
This commit is contained in:
parent
48a1a978aa
commit
97905d6c64
2 changed files with 6 additions and 0 deletions
|
@ -1,3 +1,8 @@
|
|||
Mon, 20 Nov 2006 13:33:00 +0100 <thp@perli.net>
|
||||
* src/gpodder/gpodder.py: Fixed a stupid bug that prevented you
|
||||
from changing a channel's url in the channel editor (didn't
|
||||
anyone notice this bug before? ;)
|
||||
|
||||
Mon, 20 Nov 2006 12:46:54 +0100 <thp@perli.net>
|
||||
* src/gpodder/libpodcasts.py: Added one_line_description() to
|
||||
podcastItem; modified getItemsModel to return description
|
||||
|
|
|
@ -498,6 +498,7 @@ class Gpodder(SimpleGladeApp):
|
|||
return
|
||||
|
||||
result = Gpodderchannel().requestURL( channel)
|
||||
active = self.active_channel
|
||||
if result != channel.url and result != None and result != "" and (result[:4] == "http" or result[:3] == "ftp"):
|
||||
log( 'Changing channel #%d from "%s" to "%s"', active, channel.url, result)
|
||||
self.statusLabel.set_text( _("Fetching channel index..."))
|
||||
|
|
Loading…
Reference in a new issue