work around sequential schedule validation limit (#2655)
* remove readalltext * remove unused method * remove fileexists * remove folderexists * remove readalllines * remove fake local file system * show playlist name in playout build errors * add basic sequential schedule validator tests * work around sequential schedule validation limit
This commit is contained in:
@@ -1087,7 +1087,10 @@ public class MediaCollectionRepository : IMediaCollectionRepository
|
||||
.AsNoTracking()
|
||||
.SelectOneAsync(a => a.Id, a => a.Id == emptyCollection.MediaItemId.Value, cancellationToken)
|
||||
.MapT(s => s.ShowMetadata.Head().Title),
|
||||
// TODO: get playlist name
|
||||
CollectionType.Playlist => await dbContext.Playlists
|
||||
.AsNoTracking()
|
||||
.SelectOneAsync(p => p.Id, p => p.Id == emptyCollection.PlaylistId.Value, cancellationToken)
|
||||
.MapT(p => p.Name),
|
||||
_ => None
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user