|
@@ -193,10 +193,10 @@
|
|
|
MLFile *anyFileFromEpisode = showEpisode.files.anyObject;
|
|
|
self.titleLabel.text = showEpisode.name;
|
|
|
if (self.titleLabel.text.length < 1) {
|
|
|
- self.titleLabel.text = [NSString stringWithFormat:@"S%02dE%02d", showEpisode.episodeNumber.intValue, showEpisode.seasonNumber.intValue];
|
|
|
+ self.titleLabel.text = [NSString stringWithFormat:@"S%02dE%02d", showEpisode.seasonNumber.intValue, showEpisode.episodeNumber.intValue];
|
|
|
self.subtitleLabel.text = [NSString stringWithFormat:@"%@", [VLCTime timeWithNumber:[anyFileFromEpisode duration]]];
|
|
|
} else
|
|
|
- self.subtitleLabel.text = [NSString stringWithFormat:@"S%02dE%02d — %@", showEpisode.episodeNumber.intValue, showEpisode.seasonNumber.intValue, [VLCTime timeWithNumber:[anyFileFromEpisode duration]]];
|
|
|
+ self.subtitleLabel.text = [NSString stringWithFormat:@"S%02dE%02d — %@", showEpisode.seasonNumber.intValue, showEpisode.episodeNumber.intValue, [VLCTime timeWithNumber:[anyFileFromEpisode duration]]];
|
|
|
|
|
|
CGFloat position = anyFileFromEpisode.lastPosition.floatValue;
|
|
|
self.progressView.progress = position;
|