Skip to content

Commit

Permalink
just to be safe
Browse files Browse the repository at this point in the history
  • Loading branch information
Scott Horowitz committed Jul 21, 2007
1 parent 0e2d5ba commit c299003
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
v1.X - Pending
v1.2.2 - Pending
+ Bug: Prevent connection error if the interface hasn't yet been run
+ Bug: Prevent possibility of deleting image file when choosing local art file

Expand Down
5 changes: 3 additions & 2 deletions sonata.py
Original file line number Diff line number Diff line change
Expand Up @@ -2648,8 +2648,9 @@ def handle_change_song(self):
if self.status and self.status.has_key('song'):
row = int(self.status.song)
self.boldrow(row)
if not self.prevsonginfo or self.songinfo.file != self.prevsonginfo.file:
self.keep_song_visible_in_list()
if self.songinfo:
if not self.prevsonginfo or self.songinfo.file != self.prevsonginfo.file:
self.keep_song_visible_in_list()
self.prev_boldrow = row

self.get_new_artist_for_album_name()
Expand Down

0 comments on commit c299003

Please sign in to comment.