Skip to content

Commit

Permalink
Fixed naming issue on track files
Browse files Browse the repository at this point in the history
All items are alone by default but track was not alone (even if is not true)
  • Loading branch information
helltraitor committed Jan 18, 2023
1 parent c3c4bb9 commit 0b14f11
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion downloader/extensions/yandex/models/track/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ class Track(Downloadable):
file: TrackFile | None = field(default=None, repr=False)
meta: TrackMeta | None = field(default=None, repr=False)
available: bool = False
alone: bool = False
alone: bool = True
quality: TrackQuality = field(default=TrackQuality.STANDARD, repr=False)

@staticmethod
Expand Down

0 comments on commit 0b14f11

Please sign in to comment.