Skip to content

Commit

Permalink
Исправлено обновление списка треков в потоках
Browse files Browse the repository at this point in the history
  • Loading branch information
feschukov committed Dec 9, 2022
1 parent a539985 commit 02b89ab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ def add_entry(self, tracks):
track_location = track_location+':'+str(track.albums[0].id)
entry = self.db.entry_lookup_by_location(track_location)
if not entry:
self.last_track = track_location
self.last_track = track_location[track_location.find("_")+1:]
entry = RB.RhythmDBEntry.new(self.db, self.entry_type, track_location)
if entry:
self.db.entry_set(entry, RB.RhythmDBPropType.TITLE, track.title)
Expand Down

0 comments on commit 02b89ab

Please sign in to comment.