documentation and comments

This commit is contained in:
Arno Hautala 2021-09-01 12:30:00 -04:00
parent 78e1f59804
commit 020433ae74

View file

@ -373,8 +373,8 @@ class Track(Record):
if "/iPod_Control/Podcasts/" in filename: if "/iPod_Control/Podcasts/" in filename:
self.is_podcast = True self.is_podcast = True
self["dontskip"] = 0 self["dontskip"] = 0 # podcasts should not be "not skipped" (re: should be skipped) when shuffling
self["remember"] = 1 self["remember"] = 1 # podcasts should remember their last playback position
text = os.path.splitext(os.path.basename(filename))[0] text = os.path.splitext(os.path.basename(filename))[0]