aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations
diff options
context:
space:
mode:
authorBond-009 <bond.009@outlook.com>2020-11-12 17:34:30 +0100
committerGitHub <noreply@github.com>2020-11-12 17:34:30 +0100
commitf45b4ac11fa75056f52e29c7dac17f89b4e43b28 (patch)
tree5dc3d9bb108b12440747197f8667e2d63c7c80d1 /Emby.Server.Implementations
parent00c4055b6e6125eb2a1d04b6432f171caef1b0da (diff)
parent73f9a6d7d057a9fd0a3ab24a52bd82e768f39705 (diff)
Merge pull request #4474 from crobibero/property-readonlylist
Convert array property to IReadOnlyList
Diffstat (limited to 'Emby.Server.Implementations')
-rw-r--r--Emby.Server.Implementations/LiveTv/LiveTvManager.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Emby.Server.Implementations/LiveTv/LiveTvManager.cs b/Emby.Server.Implementations/LiveTv/LiveTvManager.cs
index 9c7d624ee..5b9c5761e 100644
--- a/Emby.Server.Implementations/LiveTv/LiveTvManager.cs
+++ b/Emby.Server.Implementations/LiveTv/LiveTvManager.cs
@@ -1429,7 +1429,7 @@ namespace Emby.Server.Implementations.LiveTv
return result;
}
- public Task AddInfoToProgramDto(IReadOnlyCollection<(BaseItem, BaseItemDto)> tuples, ItemFields[] fields, User user = null)
+ public Task AddInfoToProgramDto(IReadOnlyCollection<(BaseItem, BaseItemDto)> tuples, IReadOnlyList<ItemFields> fields, User user = null)
{
var programTuples = new List<Tuple<BaseItemDto, string, string>>();
var hasChannelImage = fields.Contains(ItemFields.ChannelImage);